about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlavio Percoco <flaper87@gmail.com>2015-01-14 08:50:56 +0100
committerFlavio Percoco <flaper87@gmail.com>2015-01-16 08:18:56 +0100
commit59775bb955e7fdb7d1f9cddd27ab64e3676f8e51 (patch)
treee24ab8cceb47b82f53866f60f00fb7fc18288396
parentaa642b3486d2ac7ff50b31e2d0e9640e4723847d (diff)
downloadrust-59775bb955e7fdb7d1f9cddd27ab64e3676f8e51.tar.gz
rust-59775bb955e7fdb7d1f9cddd27ab64e3676f8e51.zip
fix latest changes fallout
-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() {}