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