[mlir][gpu]add AffineScope Trait to gpu.launch. (#121058)
[llvm-project.git] / lldb / test / API / commands / expression / fixits / main.cpp
blob0162ed24bd84122c000345d303ae38b66960ea4a
1 #include <stdio.h>
3 struct SubStruct
5 int a;
6 int b;
7 };
9 struct MyStruct
11 int first;
12 struct SubStruct second;
15 int
16 main()
18 struct MyStruct my_struct = {10, {20, 30}};
19 struct MyStruct *my_pointer = &my_struct;
20 struct MyStruct *null_pointer = nullptr;
21 printf ("Stop here to evaluate expressions: %d %d %p\n", my_pointer->first, my_pointer->second.a, my_pointer);
22 return 0;