rustc/tests/ui/const-generics/unknown_adt.rs
2023-08-02 10:33:26 +02:00

5 lines
91 B
Rust

fn main() {
let _: UnknownStruct<7>;
//~^ ERROR cannot find type `UnknownStruct`
}