mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
297 B
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
|