summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/promoted-annotation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/user-annotations/promoted-annotation.rs')
-rw-r--r--src/test/ui/nll/user-annotations/promoted-annotation.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/nll/user-annotations/promoted-annotation.rs b/src/test/ui/nll/user-annotations/promoted-annotation.rs
deleted file mode 100644
index b92f8bfd2..000000000
--- a/src/test/ui/nll/user-annotations/promoted-annotation.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// Test that type annotations are checked in promoted constants correctly.
-
-fn foo<'a>() {
- let x = 0;
- let f = &drop::<&'a i32>;
- f(&x);
- //~^ ERROR `x` does not live long enough
-}
-
-fn main() {}