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