blob: 4754147eb93cfe1b653fdaa4ee070326f5d4a5c0 [file] [log] [blame]
// Import this class in the test.
@objc public class Bar_ImportedObjcClass {
public func bar_ImportedObjcClass_InstanceFunc1() {}
public class func bar_ImportedObjcClass_ClassFunc1() {}
public subscript(i: Bar_ImportedObjcClass) -> Int {
get {
return 0
}
}
public var bar_ImportedObjcClass_Property1: Int = 0
}
// Don't import this class in the test.
@objc public class Bar_NonImportedObjcClass {
public func ERROR() {}
}