Files
swift-mirror/test/SourceKit/Indexing/index_constructors.swift
Rintaro Ishizaki c48dc6d9c8 [SourceKit][Tests] Disable a test case while investigating
This test fails in Apple Silicon bot. Disable it while investigating.

rdar://79416986
2021-06-17 14:00:17 -07:00

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() {}
}