9 lines
109 B
Rust
9 lines
109 B
Rust
#![feature(optin_builtin_traits)]
|
|
|
|
struct Foo;
|
|
|
|
unsafe impl !Send for Foo { } //~ ERROR E0198
|
|
|
|
fn main() {
|
|
}
|