Files
swift-mirror/test/SourceKit/Refactoring/semantic-refactoring/fill-stub.swift
Saleem Abdulrasool b67d5f0cf7 test: convert rm -rf && mkdir -p into %empty-directory
This converts the instances of the pattern for which we have a proper
substitution in lit.  This will make it easier to replace it
appropriately with Windows equivalents.
2018-03-06 14:30:54 -08:00

12 lines
298 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-ANY: OS=macosx, OS=linux-gnu