Home | History | Annotate | Download | only in Index
      1 @interface Foo
      2 @property (readonly) id x;
      3 -(int) mymethod;
      4 -(int) mymethod2:(int)x blah:(float)y;
      5 @end
      6 
      7 // RUN: c-index-test -test-print-typekind %s | FileCheck %s
      8 // CHECK: ObjCPropertyDecl=x:2:25 typekind=Typedef [canonical=ObjCObjectPointer]
      9 // CHECK: ObjCInstanceMethodDecl=mymethod:3:8 typekind=Invalid [result=Int]
     10 // CHECK: ObjCInstanceMethodDecl=mymethod2:blah::4:8 typekind=Invalid [result=Int] [args= Int Float]
     11