diff options
Diffstat (limited to 'tests/ui/nll/promoted-closure-pair.rs')
-rw-r--r-- | tests/ui/nll/promoted-closure-pair.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/nll/promoted-closure-pair.rs b/tests/ui/nll/promoted-closure-pair.rs new file mode 100644 index 000000000..cc9f17fd4 --- /dev/null +++ b/tests/ui/nll/promoted-closure-pair.rs @@ -0,0 +1,10 @@ +// Check that we handle multiple closures in the same promoted constant. + +fn foo() -> &'static i32 { + let z = 0; + let p = &(|y| y, |y| y); + p.0(&z); + p.1(&z) //~ ERROR cannot return +} + +fn main() {} |