mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
241 B
Swift
11 lines
241 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename=%s
|
|
|
|
// https://github.com/apple/swift/issues/51086
|
|
|
|
struct S<T> {}
|
|
func use<T>(x: (S<T>) -> Void) {}
|
|
|
|
func test() {
|
|
use { $0 #^COMPLETE^# }
|
|
}
|