about summary refs log tree commit diff
path: root/src/test/compile-fail/conflicting-implementations-aux.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/conflicting-implementations-aux.rs')
-rw-r--r--src/test/compile-fail/conflicting-implementations-aux.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/compile-fail/conflicting-implementations-aux.rs b/src/test/compile-fail/conflicting-implementations-aux.rs
index e39059124a0..3a1f696193e 100644
--- a/src/test/compile-fail/conflicting-implementations-aux.rs
+++ b/src/test/compile-fail/conflicting-implementations-aux.rs
@@ -17,7 +17,8 @@ use trait_impl_conflict::Foo;
 
 impl<A> Foo for A {
 //~^ ERROR conflicting implementations for trait `trait_impl_conflict::Foo`
-//~^^ ERROR cannot provide an extension implementation where both trait and type are not defined in this crate
+//~^^ ERROR cannot provide an extension implementation where both trait and type
+//          are not defined in this crate
 }
 
 fn main() {