From 59775bb955e7fdb7d1f9cddd27ab64e3676f8e51 Mon Sep 17 00:00:00 2001 From: Flavio Percoco Date: Wed, 14 Jan 2015 08:50:56 +0100 Subject: [PATCH] fix latest changes fallout --- src/test/run-pass/syntax-trait-polarity.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/run-pass/syntax-trait-polarity.rs b/src/test/run-pass/syntax-trait-polarity.rs index 7c29675f3f4f..3344844d49ff 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; impl TestType2 {} impl !Send for TestType2 {} -impl !TestTrait for TestType2 {} fn main() {}