summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/pattern_substs_on_tuple_struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/user-annotations/pattern_substs_on_tuple_struct.rs')
-rw-r--r--src/test/ui/nll/user-annotations/pattern_substs_on_tuple_struct.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/nll/user-annotations/pattern_substs_on_tuple_struct.rs b/src/test/ui/nll/user-annotations/pattern_substs_on_tuple_struct.rs
deleted file mode 100644
index 7486aab0e..000000000
--- a/src/test/ui/nll/user-annotations/pattern_substs_on_tuple_struct.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-struct Foo<'a>(&'a u32);
-
-fn in_let() {
- let y = 22;
- let foo = Foo(&y);
- //~^ ERROR `y` does not live long enough
- let Foo::<'static>(_z) = foo;
-}
-
-fn in_match() {
- let y = 22;
- let foo = Foo(&y);
- //~^ ERROR `y` does not live long enough
- match foo {
- Foo::<'static>(_z) => {
- }
- }
-}
-
-fn main() { }