Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / real-definition / Foo.m
blob4d84d432303c5a027131efb58a8e488be76f2c80
1 #import "Foo.h"
3 @implementation Foo
5 - (id)init
7     self = [super init];
8     if (self) {
9         _bar = [[Bar alloc] init];
10     }
11     NSLog(@"waiting");; // Set breakpoint where Bar is an interface
12     return self;
15 - (void)dealloc
17     [_bar release];
18     [super dealloc];
21 - (NSString *)description
23     return [NSString stringWithFormat:@"%p: @Foo { _bar = %@ }", self, _bar];
26 @end