blob: 4d52b391280a779a7de6cea72f407c4aec7a7caa [file] [log] [blame]
#![feature(optin_builtin_traits)]
fn main() {
struct Foo;
impl !Sync for Foo {}
unsafe impl Send for &'static Foo { } //~ ERROR cross-crate traits with a default impl
}