1@import Umbrella;
2
3@interface Bar : Foo
4+(instancetype)init;
5@end
6
7@implementation Bar
8+(instancetype)init {
9 return [super init];
10}
11@end
12
13int main(int argc, char **argv) {
14 id bar = [Bar new];
15 [bar i]; // break here
16 return 0;
17}
18

source code of lldb/test/API/lang/objc/modules-app-update/main.m