Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
const-param-before-other-params.rs
blob: cb1cebe1f68a1742e42e75c2cc8831e2a9f9f428 [
file
] [
log
] [
blame
] [
edit
]
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
()
{}