]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/struct-with-invalid-const-param.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / const-generics / struct-with-invalid-const-param.rs
1 // Checks that a const param cannot be stored in a struct.
2
3 struct S<const C: u8>(C); //~ ERROR expected type, found const parameter
4
5 fn main() {}