mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
153 B
Plaintext
12 lines
153 B
Plaintext
fileprivate func new_name() -> Int {
|
|
var aaa = 1 + 2
|
|
aaa = aaa + 3
|
|
if aaa == 3 { aaa = 4 }
|
|
return aaa
|
|
}
|
|
|
|
func foo() -> Int{
|
|
return new_name()
|
|
}
|
|
|