mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
194 B
Swift
10 lines
194 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename=%s
|
|
|
|
struct SD {
|
|
var array: [Int] = []
|
|
}
|
|
|
|
func test(sd: SD) {
|
|
_ = sd[\.array[#^COMPLETE^#]]
|
|
}
|