1template <int Size> struct array {
2 int Arr[Size];
3 array() {}
4};
5
6array<3> myArray;
7
8int main() {}
9

source code of lldb/test/API/lang/cpp/non-type-template-param/main.cpp