[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / lang / objcxx / hide-runtime-values / main.mm
blobc192f386f22290010d2ffd88184e1792c03b21ba
1 #import <Foundation/Foundation.h>
3 void baz() {}
5 struct MyClass {
6   void bar() {
7     baz(); // break here
8   }
9 };
11 @interface MyObject : NSObject {}
12 - (void)foo;
13 @end
15 @implementation MyObject
16 - (void)foo {
17   MyClass c;
18   c.bar(); // break here
20 @end
22 int main (int argc, char const *argv[]) {
23     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
24     id obj = [MyObject new];
25     [obj foo];
26     [pool release];
27     return 0;