Files
swift-mirror/test/refactoring/ExtractExpr/Outputs/name_collision/C13-22.swift.expected
Argyrios Kyrtzidis 60a91bb736 [refactoring] Upstreaming the implementation for Swift local refactoring (#11568)
[refactoring] Upstreaming the implementation for Swift local refactoring
2017-08-22 16:50:16 -07:00

13 lines
221 B
Plaintext

func foo1() -> Int { return 0 }
func foo(_ a : Int) -> Int {
let new_name = 1
let new_name1 = 1
let new_name2 = 1
let new_name3 = 1
let new_name4: Int = 1 + 2 + 2
var aaa = new_name4 + a + foo1()
return 1
}