rust/tests/ui/traits/next-solver/unsafe-auto-trait-impl.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
111 B
Rust
Raw Normal View History

2023-12-14 06:11:28 -06:00
// compile-flags: -Znext-solver
// check-pass
struct Foo(*mut ());
unsafe impl Sync for Foo {}
fn main() {}