about summary refs log tree commit diff
path: root/src/test/parse-fail
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2018-05-30 11:04:39 -0700
committerEsteban Küber <esteban@kuber.com.ar>2018-06-05 08:48:55 -0700
commitd66d35bb9184b7f3a4e155386ca44410c0d09ff2 (patch)
tree96e19f423d24963129f610a4149bdefc84cec3ea /src/test/parse-fail
parentcbc70a0d68bae1d439eb679676c499d543e61396 (diff)
downloadrust-d66d35bb9184b7f3a4e155386ca44410c0d09ff2.tar.gz
rust-d66d35bb9184b7f3a4e155386ca44410c0d09ff2.zip
Account for comma in suggestion
Diffstat (limited to 'src/test/parse-fail')
-rw-r--r--src/test/parse-fail/bind-struct-early-modifiers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/parse-fail/bind-struct-early-modifiers.rs b/src/test/parse-fail/bind-struct-early-modifiers.rs
index 25348a3bfd1..e9e76af11a5 100644
--- a/src/test/parse-fail/bind-struct-early-modifiers.rs
+++ b/src/test/parse-fail/bind-struct-early-modifiers.rs
@@ -13,7 +13,7 @@
 fn main() {
     struct Foo { x: isize }
     match (Foo { x: 10 }) {
-        Foo { ref x: ref x } => {}, //~ ERROR expected `,`, found `:`
+        Foo { ref x: ref x } => {}, //~ ERROR expected `,`
         _ => {}
     }
 }