mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
188 B
Swift
10 lines
188 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename=%s
|
|
|
|
protocol P {
|
|
func foo<T: P>(arg: T)
|
|
}
|
|
|
|
func foo(x: P) {
|
|
x.foo(arg: #^COMPLETE^#)
|
|
}
|