When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / FrontendObjC / 2007-10-18-ProDescriptor.m
blob220fdd2c2329fa96c42ef9c6bddbc5b5b6e2e17a
1 // RUN: %llvmgcc -x objective-c -S %s -o /dev/null
2 @protocol O
3 @end
4 @interface O < O > {
6 @end
7 struct A {
8 };
9 @protocol AB
10 - (unsigned) ver;
11 @end
12 @interface AGy:O < AB > {
14 @end
15 @implementation AGy
16 - (unsigned) ver {
18 @end