StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGenObjC / encode-test-2.m
blob9e1423755a79a8bc2ced3bb4e80e71a40d5e72ce
1 // RUN: %clang_cc1 -triple=i686-apple-darwin9 -emit-llvm -o %t %s
2 // RUN: grep -e "@\\\22<X>\\\22" %t
3 // RUN: grep -e "@\\\22<X><Y>\\\22" %t
4 // RUN: grep -e "@\\\22<X><Y><Z>\\\22" %t
5 // RUN: grep -e "@\\\22Foo<X><Y><Z>\\\22" %t
6 // RUN: grep -e "{Intf=@@@@#}" %t  
8 @protocol X, Y, Z;
9 @class Foo;
11 @protocol Proto
12 @end
14 @interface Intf <Proto>
16 id <X> IVAR_x;
17 id <X, Y> IVAR_xy;
18 id <X, Y, Z> IVAR_xyz;
19 Foo <X, Y, Z> *IVAR_Fooxyz;
20 Class <X> IVAR_Classx;
22 @end
24 @implementation Intf 
25 @end
27 int main()
29         const char * en = @encode(Intf);