llvm-project/lldb/test/functionalities/data-formatter/varscript_formatting/main.cpp

8 lines
142 B
C++

template <typename T>
struct something {};
int main() {
something<int> x;
something<void*> y;
return 0; // Set breakpoint here.
}