about summary refs log tree commit diff
path: root/src/test/parse-fail/trait-bounds-not-on-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/parse-fail/trait-bounds-not-on-impl.rs')
-rw-r--r--src/test/parse-fail/trait-bounds-not-on-impl.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/parse-fail/trait-bounds-not-on-impl.rs b/src/test/parse-fail/trait-bounds-not-on-impl.rs
index a034352c4a6..51447b22576 100644
--- a/src/test/parse-fail/trait-bounds-not-on-impl.rs
+++ b/src/test/parse-fail/trait-bounds-not-on-impl.rs
@@ -13,7 +13,9 @@ trait Foo {
 
 struct Bar;
 
-impl Foo + Owned for Bar { //~ ERROR not a trait
+impl Foo + Owned for Bar {
+//~^ ERROR not a trait
+//~^^ ERROR expected one of `..`, `where`, or `{`, found `Bar`
 }
 
 fn main() { }