blob: e75b341a61e502b9ed41667a4003e4a4a704c870 [file] [log] [blame]
// RUN: %target-swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename=%s
struct S<T> {}
func use<T>(x: (S<T>) -> Void) {}
func test() {
use { $0 #^COMPLETE^# }
}