rust/tests/ui/const-generics/unknown_adt.rs

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

5 lines
91 B
Rust
Raw Normal View History

2020-07-02 20:06:14 +00:00
fn main() {
let _: UnknownStruct<7>;
//~^ ERROR cannot find type `UnknownStruct`
}