about summary refs log tree commit diff
path: root/src/test/compile-fail/pat-shadow-in-nested-binding.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/pat-shadow-in-nested-binding.rs')
-rw-r--r--src/test/compile-fail/pat-shadow-in-nested-binding.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/pat-shadow-in-nested-binding.rs b/src/test/compile-fail/pat-shadow-in-nested-binding.rs
index 60fb9b831ab..c4ba5131879 100644
--- a/src/test/compile-fail/pat-shadow-in-nested-binding.rs
+++ b/src/test/compile-fail/pat-shadow-in-nested-binding.rs
@@ -1,5 +1,5 @@
 enum foo = uint;
 
 fn main() {
-    let (foo, _) = (2, 3); //! ERROR declaration of `foo` shadows an enum that's in scope
+    let (foo, _) = (2, 3); //~ ERROR declaration of `foo` shadows an enum that's in scope
 }