]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/const-param-before-other-params.stderr
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / ui / const-generics / const-param-before-other-params.stderr
CommitLineData
f2b60f7d 1error: lifetime parameters must be declared prior to type and const parameters
a2a8927a 2 --> $DIR/const-param-before-other-params.rs:1:21
9fa01778 3 |
94222f64
XL
4LL | fn bar<const X: u8, 'a>(_: &'a ()) {
5 | --------------^^- help: reorder the parameters: lifetimes, then consts and types: `<'a, const X: u8>`
9fa01778 6
3dfed10e 7error: aborting due to previous error
9fa01778 8