1template <typename T>
2struct something {};
3
4int main() {
5 something<int> x;
6 something<void*> y;
7 return 0; // Set breakpoint here.
8}
9

source code of lldb/test/API/functionalities/data-formatter/varscript_formatting/main.cpp