]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/defaults/param-order-err-pretty-prints-default.rs
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / ui / const-generics / defaults / param-order-err-pretty-prints-default.rs
1 struct Foo<const M: usize = 10, 'a>(&'a u32);
2 //~^ ERROR lifetime parameters must be declared prior to type and const parameters
3
4 fn main() {}