about summary refs log tree commit diff
path: root/tests/ui/traits/next-solver/unsafe-auto-trait-impl.rs
blob: 89e3600bbbea1e49bb44e1dac43ae306a973eefd (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: -Znext-solver
//@ check-pass

struct Foo(*mut ());

unsafe impl Sync for Foo {}

fn main() {}