about summary refs log tree commit diff
path: root/src/test/parse-fail/multitrait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/parse-fail/multitrait.rs')
-rw-r--r--src/test/parse-fail/multitrait.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/parse-fail/multitrait.rs b/src/test/parse-fail/multitrait.rs
index a1c737609d1..2a8d6d99957 100644
--- a/src/test/parse-fail/multitrait.rs
+++ b/src/test/parse-fail/multitrait.rs
@@ -15,7 +15,7 @@ struct S {
 }
 
 impl Cmp, ToString for S {
-//~^ ERROR: expected one of `(`, `+`, `..`, `::`, `<`, `for`, `where`, or `{`, found `,`
+//~^ ERROR: expected one of `(`, `+`, `::`, `<`, `for`, `where`, or `{`, found `,`
   fn eq(&&other: S) { false }
   fn to_string(&self) -> String { "hi".to_string() }
 }