summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0198.rs
blob: 041bbe8fdcf6920359867157ca5826a42961d334 (plain)
1
2
3
4
5
6
7
8
#![feature(negative_impls)]

struct Foo;

unsafe impl !Send for Foo { } //~ ERROR E0198

fn main() {
}