about summary refs log tree commit diff
path: root/src/test/run-pass/syntax-trait-polarity.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/syntax-trait-polarity.rs')
-rw-r--r--src/test/run-pass/syntax-trait-polarity.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/run-pass/syntax-trait-polarity.rs b/src/test/run-pass/syntax-trait-polarity.rs
index 7c29675f3f4..3344844d49f 100644
--- a/src/test/run-pass/syntax-trait-polarity.rs
+++ b/src/test/run-pass/syntax-trait-polarity.rs
@@ -19,13 +19,11 @@ impl TestType {}
 trait TestTrait {}
 
 impl !Send for TestType {}
-impl !TestTrait for TestType {}
 
 struct TestType2<T>;
 
 impl<T> TestType2<T> {}
 
 impl<T> !Send for TestType2<T> {}
-impl<T> !TestTrait for TestType2<T> {}
 
 fn main() {}