summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-const_generics.rs
blob: fe1ded1c4bbc4bba7e8b86d954a113a51a1d59ad (plain)
1
2
3
4
5
fn foo<const X: ()>() {} //~ ERROR const generics are unstable

struct Foo<const X: usize>([(); X]); //~ ERROR const generics are unstable

fn main() {}