Files
swift-mirror/test/multifile/function_builder_multifile.swift
Doug Gregor b4e80cfd90 [Constraint graph] Enable one-way constraints in function builders.
Enable one-way constraints by default for function builders, finishing
rdar://problem/50150793.
2019-08-19 22:49:15 -07:00

10 lines
200 B
Swift

// RUN: %target-swift-frontend -typecheck %S/Inputs/function_builder_definition.swift -primary-file %s
func test0() -> (Int, Double, String) {
return tuplify {
17
3.14159
"Hello"
}
}