Files
swift-mirror/test/SourceKit/Refactoring/semantic-refactoring/fill-stub.swift
Rintaro Ishizaki 0aa3125b62 [Testing] Eliminate REQUIRES-ANY usage
REQUIRES-ANY is deprecated and being removed. Use boolean expressions.

rdar://problem/58549266
2020-01-14 10:21:49 -08:00

12 lines
296 B
Swift

protocol P {
func foo()
}
class C1 : P {}
// RUN: %empty-directory(%t.result)
// RUN: %sourcekitd-test -req=fill-stub -pos=5:8 %s -- %s > %t.result/fill-stub.swift.expected
// RUN: diff -u %S/fill-stub.swift.expected %t.result/fill-stub.swift.expected
// REQUIRES: OS=macosx || OS=linux-gnu