mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:07:29 +00:00
9 lines
177 B
Rust
9 lines
177 B
Rust
#![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
|
|
}
|