blob: 60d69e8711b37a00428e90ea1ca236c01c2e5591 [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