summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/promoted-closure-pair.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/promoted-closure-pair.rs')
-rw-r--r--src/test/ui/nll/promoted-closure-pair.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/nll/promoted-closure-pair.rs b/src/test/ui/nll/promoted-closure-pair.rs
deleted file mode 100644
index cc9f17fd4..000000000
--- a/src/test/ui/nll/promoted-closure-pair.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// 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() {}