Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
codemap_tests
/
empty_span.rs
blob: 7753e2eceb543774d69feeca6981d26d22d8c9ef [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
negative_impls
)]
fn
main
()
{
struct
Foo
;
impl
!
Sync
for
Foo
{}
unsafe
impl
Send
for
&
'
static
Foo
{
}
//~ ERROR cross-crate traits with a default impl
}