summary refs log tree commit diff
path: root/src/test/ui/const-generics/struct-with-invalid-const-param.rs
blob: 207b07bf69514ea7deeff86e290b2b3fbe2865d1 (plain)
1
2
3
4
5
6
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash

struct S<const C: u8>(C); //~ ERROR expected type, found const parameter

fn main() {}