2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2020-01-09 05:56:38 -05:00
|
|
|
#![feature(negative_impls)]
|
2015-01-10 10:40:17 +01:00
|
|
|
|
|
|
|
|
struct TestType;
|
|
|
|
|
|
|
|
|
|
impl !Send for TestType {}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|