// REQUIRES: objc_interop // RUN: %empty-directory(%t) // RUN: %empty-directory(%t/mods) // RUN: split-file %s %t // RUN: %target-swift-frontend -emit-module -o %t/mods %t/ObjcImpl.swift -import-objc-header %t/objc_impl.h -disable-objc-attr-requires-foundation-module // RUN: %target-swift-ide-test -print-indexed-symbols -module-to-print ObjcImpl -source-filename none -I %t/mods | %FileCheck %s //--- objc_impl.h @interface NSObject @end @interface ObjCClass : NSObject @property int someObjCDeclaredVar; @end //--- ObjcImpl.swift // CHECK: extension/ext-class/Swift | ObjCClass | s:e:c:@CM@ObjcImpl@@objc(cs)ObjCClass(py)someObjCDeclaredVar | Def // CHECK: class/Swift | ObjCClass | c:objc(cs)ObjCClass | Ref @_objcImplementation public extension ObjCClass { // CHECK: instance-property/Swift | someObjCDeclaredVar | c:@CM@ObjcImpl@@objc(cs)ObjCClass(py)someObjCDeclaredVar | Def @objc var someObjCDeclaredVar: CInt }