Files
swift-mirror/test/SILOptimizer/noescape_param_exclusivity.swift
Michael Gottesman f10b45b540 [ownership] Add an extra run of -Onone tests with diagnostics with -enable-ownership-stripping-after-serialization enabled.
Right now the stdlib/overlays can compile against -Onone tests with or without
-enable-ownership-stripping-after-serialization. This will help me to prevent
other work going on from breaking these properties.
2019-10-26 15:12:14 -07:00

50 lines
2.0 KiB
Swift

// RUN: %target-swift-frontend -emit-sil %s -verify
// RUN: %target-swift-frontend -emit-sil %s -verify -enable-ownership-stripping-after-serialization
func test0(a: (() -> ()) -> (), b: () -> ()) {
a(b) // expected-error {{passing a non-escaping function parameter 'b' to a call to a non-escaping function parameter can allow re-entrant modification of a variable}}
}
func test0(fn: (() -> ()) -> ()) {
fn { fn {} } // expected-error {{passing a closure which captures a non-escaping function parameter 'fn' to a call to a non-escaping function parameter can allow re-entrant modification of a variable}}
}
func test1(fn: (() -> ()) -> ()) {
func foo() {
fn { fn {} } // expected-error {{passing a closure which captures a non-escaping function parameter 'fn' to a call to a non-escaping function parameter can allow re-entrant modification of a variable}}
}
}
func test2(x: inout Int, fn: (() -> ()) -> ()) {
func foo(myfn: () -> ()) {
x += 1
myfn()
}
// Make sure we only complain about calls to noescape parameters.
foo { fn {} }
}
func test3(fn: (() -> ()) -> ()) {
{ myfn in myfn { fn {} } }(fn) // expected-error {{passing a closure which captures a non-escaping function parameter 'fn' to a call to a non-escaping function parameter can allow re-entrant modification of a variable}}
}
func test4(fn: (() -> ()) -> ()) {
func foo() {
fn {}
}
fn(foo) // expected-error {{passing a closure which captures a non-escaping function parameter 'fn' to a call to a non-escaping function parameter can allow re-entrant modification of a variable}}
}
// rdar://problem/34496304
func test5(outer: (() throws -> Int) throws -> Int) throws -> Int {
func descend(_ inner: (() throws -> Int) throws -> Int) throws -> Int {
return try inner { // expected-error {{passing a closure which captures a non-escaping function parameter 'inner' to a call to a non-escaping function parameter can allow re-entrant modification of a variable}}
try descend(inner)
}
}
return try descend(outer)
}