rust/tests/ui/const-generics/const-param-before-other-params.rs

8 lines
174 B
Rust
Raw Normal View History

fn bar<const X: u8, 'a>(_: &'a ()) {
2022-09-09 07:28:57 -05:00
//~^ ERROR lifetime parameters must be declared prior to type and const parameters
}
fn foo<const X: u8, T>(_: &T) {}
fn main() {}