Files
swift-mirror/test/SourceKit/Indexing/index_constructors.swift
2021-04-13 23:14:06 -07:00

13 lines
374 B
Swift

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