]> git.lizzy.rs Git - rust.git/blobdiff - src/test/parse-fail/keyword-mut-as-identifier.rs
Auto merge of #54919 - alexcrichton:update-cargo, r=Mark-Simulacrum
[rust.git] / src / test / parse-fail / keyword-mut-as-identifier.rs
index b5d36e577502d433080bd615b7bff1177fdc11e4..0aeca9b34ab8c6d8588a97012b5809547ceceb21 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -8,8 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// This file was auto-generated using 'src/etc/generate-keyword-tests.py mut'
+// compile-flags: -Z parse-only
 
 fn main() {
-    let mut = "foo"; //~ error: ident
+    let mut = "foo"; //~ error: expected identifier, found `=`
 }