about summary refs log tree commit diff
path: root/tests/ui/lint/lint-incoherent-auto-trait-objects.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lint/lint-incoherent-auto-trait-objects.rs')
-rw-r--r--tests/ui/lint/lint-incoherent-auto-trait-objects.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ui/lint/lint-incoherent-auto-trait-objects.rs b/tests/ui/lint/lint-incoherent-auto-trait-objects.rs
index d53b5144760..d34e6658435 100644
--- a/tests/ui/lint/lint-incoherent-auto-trait-objects.rs
+++ b/tests/ui/lint/lint-incoherent-auto-trait-objects.rs
@@ -4,16 +4,13 @@ impl Foo for dyn Send {}
 
 impl Foo for dyn Send + Send {}
 //~^ ERROR conflicting implementations
-//~| hard error
 
 impl Foo for dyn Send + Sync {}
 
 impl Foo for dyn Sync + Send {}
 //~^ ERROR conflicting implementations
-//~| hard error
 
 impl Foo for dyn Send + Sync + Send {}
 //~^ ERROR conflicting implementations
-//~| hard error
 
 fn main() {}