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
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
2007-10-18-ProDescriptor.m
blob
35a0df3a1a9f2791fda22f469229ccc813c96e5d
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
@protocol O
3
@end
4
@interface O < O > {
5
}
6
@end
7
struct A {
8
};
9
@protocol AB
10
- (unsigned) ver;
11
@end
12
@interface AGy:O < AB > {
13
}
14
@end
15
@implementation AGy
16
- (unsigned) ver {
17
}
18
@end