summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bind-struct-early-modifiers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/bind-struct-early-modifiers.rs')
-rw-r--r--src/test/ui/parser/bind-struct-early-modifiers.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/ui/parser/bind-struct-early-modifiers.rs b/src/test/ui/parser/bind-struct-early-modifiers.rs
deleted file mode 100644
index c4b1937de..000000000
--- a/src/test/ui/parser/bind-struct-early-modifiers.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-fn main() {
- struct Foo { x: isize }
- match (Foo { x: 10 }) {
- Foo { ref x: ref x } => {}, //~ ERROR expected `,`
- _ => {}
- }
-}