rust/src/test/ui/const-generics/const-param-before-other-params.rs
2021-12-10 19:21:25 +00:00

8 lines
165 B
Rust

fn bar<const X: u8, 'a>(_: &'a ()) {
//~^ ERROR lifetime parameters must be declared prior to const parameters
}
fn foo<const X: u8, T>(_: &T) {}
fn main() {}