blob: 8946efc3ccfea16ae493d856cafe34791acfa2a0 [file] [log] [blame]
// 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^#)
}