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

5 lines
91 B
Rust
Raw Permalink Normal View History

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