blob: 4a3b24383abc4a37e4dd375eea92e99314f2537b [file] [log] [blame]
use std::marker::Send;
struct TestType;
trait TestTrait {}
impl !Send for TestType {}
//~^ ERROR negative trait bounds
fn main() {}