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

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

fn main() {}