summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/const-param-before-other-params.rs
blob: cb1cebe1f68a1742e42e75c2cc8831e2a9f9f428 (plain)
1
2
3
4
5
6
7
fn bar<const X: u8, 'a>(_: &'a ()) {
    //~^ ERROR lifetime parameters must be declared prior to type and const parameters
}

fn foo<const X: u8, T>(_: &T) {}

fn main() {}