summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/data-formatter/varscript_formatting/main.cpp
blob: e9a36f911964601db30bd797e7a0e7e57462f54c (plain)
1
2
3
4
5
6
7
8
template <typename T>
struct something {};

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