Files
swift-mirror/test/SourceKit/Indexing/index_constructors.swift

13 lines
319 B
Swift

// REQUIRES: objc_interop
// RUN: %sourcekitd-test -req=index %s -- %s %S/Inputs/index_constructors_other.swift -module-name index_constructors | %sed_clean > %t.response
// RUN: %diff -u %s.response %t.response
import Foundation
class HorseObject : DogObject {
var name: NSString
@objc public func flip() {}
}