rust/tests/ui/traits/issue-75627.rs

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

7 lines
103 B
Rust
Raw Normal View History

struct Foo<T>(T, *const ());
unsafe impl Send for Foo<T> {}
//~^ ERROR cannot find type
fn main() {}