Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
lifetime-semicolon.rs
blob: 158c5ccdcdf198f041db47a2c5e38a48a168cfb4 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#![
allow
(
unused
)]
struct
Foo
<
'a, '
b
>
{
a
:
&
'a &'
b i32
}
fn
foo
<
'a, '
b
>(
_x
:
&
mut
Foo
<
'a; '
b
>)
{}
//~^ ERROR expected one of `,` or `>`, found `;`
fn
main
()
{}