fix latest changes fallout

This commit is contained in:
Flavio Percoco 2015-01-14 08:50:56 +01:00
parent aa642b3486
commit 59775bb955

View file

@ -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() {}