Files
swift-mirror/test/SourceKit/Refactoring/semantic-refactoring/fill-stub.swift

12 lines
297 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