Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
error-codes
/
E0198.rs
blob: 041bbe8fdcf6920359867157ca5826a42961d334 [
file
] [
log
] [
blame
]
#![
feature
(
negative_impls
)]
struct
Foo
;
unsafe
impl
!
Send
for
Foo
{
}
//~ ERROR E0198
fn
main
()
{
}