Files
clang-p2996/lldb/test/API/lang/cpp/template-arguments/main.cpp
2020-10-15 11:17:43 +02:00

9 lines
104 B
C++

template<typename T, unsigned value>
struct C {
T member = value;
};
C<int, 2> temp1;
int main() {}