blob: 1b9d54dc44586752dbb47446bc0ad64ea63d34aa [file] [log] [blame]
// RUN: %target-run-simple-swift | %FileCheck %s
// REQUIRES: executable_test
func foo(_ x: inout Int) {
func bar() -> Int {
x += 1
return x
}
bar()
}
var x = 219
foo(&x)
print(x) // CHECK: 220