Files
rust/src/test/ui/const-generics/struct-with-invalid-const-param.rs

7 lines
169 B
Rust
Raw Normal View History

#![feature(const_generics)]
2020-04-22 10:21:32 +02:00
//~^ WARN the feature `const_generics` is incomplete
struct S<const C: u8>(C); //~ ERROR expected type, found const parameter
fn main() {}