mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
400 B
Swift
14 lines
400 B
Swift
// REQUIRES: rdar79416986
|
|
// 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() {}
|
|
}
|