diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m b/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m new file mode 100644 index 0000000..14f911f --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m @@ -0,0 +1,7 @@ +#import <Foundation/Foundation.h> +#import "myclass.h" + +int main() { + id object = [MyClass new]; + return 0; // break here +} |