mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
198 B
Swift
10 lines
198 B
Swift
// RUN: %target-swift-frontend -typecheck %S/Inputs/result_builder_definition.swift -primary-file %s
|
|
|
|
func test0() -> (Int, Double, String) {
|
|
return tuplify {
|
|
17
|
|
3.14159
|
|
"Hello"
|
|
}
|
|
}
|