1
Fork 0

Organize trait test files

This commit is contained in:
Bram van den Heuvel 2021-02-08 23:15:45 +01:00
parent 921ec4b3fc
commit 0d96a79fb8
288 changed files with 285 additions and 285 deletions

View file

@ -1,21 +0,0 @@
// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(negative_impls)]
struct TestType;
impl TestType {}
trait TestTrait {}
impl !Send for TestType {}
struct TestType2<T>(T);
impl<T> TestType2<T> {}
impl<T> !Send for TestType2<T> {}
fn main() {}