Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
codemap_tests
/
empty_span.rs
blob: 7753e2eceb543774d69feeca6981d26d22d8c9ef [
file
] [
log
] [
blame
]
#![
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
}