Revert "[ELF] Refine isExported/isPreemptible condition"
[llvm-project.git] / lldb / test / API / lang / objc / real-definition / main.m
blob8c31dc9abb316de9d8a67ec8f6851f99c3e12a34
1 #include <stdio.h>
2 #include <stdint.h>
3 #import <Foundation/Foundation.h>
4 #import "Foo.h"
6 int main (int argc, char const *argv[])
8     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9     Foo *foo = [[Foo alloc] init];
10     NSLog (@"foo is %@", foo); // Set breakpoint in main
11     [pool release];
12     return 0;