mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
140 B
Plaintext
9 lines
140 B
Plaintext
func foo1() -> Int { return 0 }
|
|
|
|
func foo(_ a : Int) -> Int {
|
|
let new_name: Int = 1 + 2
|
|
var aaa = new_name + 2 + a + foo1()
|
|
return 1
|
|
}
|
|
|