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