]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-75627.rs
Merge commit '7b73b60faca71d01d900e49831fcb84553e93019' into sync-rustfmt
[rust.git] / src / test / ui / traits / issue-75627.rs
1 struct Foo<T>(T, *const ());
2
3 unsafe impl Send for Foo<T> {}
4 //~^ ERROR cannot find type
5
6 fn main() {}