summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-const_generics.rs
blob: 907e00b11e556de804542779b70276ce5ccf75a2 (plain)
1
2
3
4
5
6
7
fn foo<const X: ()>() {} //~ ERROR const generics are unstable
//~^ const generics in any position are currently unsupported

struct Foo<const X: usize>([(); X]); //~ ERROR const generics are unstable
//~^ const generics in any position are currently unsupported

fn main() {}