about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-12-08 20:49:26 -0800
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2016-12-08 21:03:46 -0800
commited3c483aa8472bf791718d6f157e4e55873e7e5d (patch)
tree19e6f4641c2ff48a2665dd11fe239142077f8934 /src/test
parentb1dd793acdde01f7fb50b7c29bc6519e4ce3f22a (diff)
downloadrust-ed3c483aa8472bf791718d6f157e4e55873e7e5d.tar.gz
rust-ed3c483aa8472bf791718d6f157e4e55873e7e5d.zip
Change error to E0572
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/E0572.rs (renamed from src/test/compile-fail/E0571.rs)2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/E0571.rs b/src/test/compile-fail/E0572.rs
index d300c597008..bbaab102de7 100644
--- a/src/test/compile-fail/E0571.rs
+++ b/src/test/compile-fail/E0572.rs
@@ -8,6 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-const FOO: u32 = return 0; //~ ERROR E0571
+const FOO: u32 = return 0; //~ ERROR E0572
 
 fn main() {}