brintos

brintos / llvm-project-archived public Read only

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