mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
288 B
Swift
14 lines
288 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename=%s
|
|
|
|
@resultBuilder
|
|
struct TupleBuilder<T> {
|
|
static func buildBlock() -> () { }
|
|
}
|
|
|
|
func testPatternMatching() {
|
|
@TupleBuilder<String> var x3 {
|
|
let x: Int? = nil
|
|
#^COMPLETE^#
|
|
}
|
|
}
|