repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
objc
/
modules-app-update
/
main.m
blob
37ec1f37b57305122cad4a5438f6c00af368d00d
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
13
int main(int argc, char **argv) {
14
id bar = [Bar new];
15
[bar i]; // break here
16
return 0;
17
}