Sign in
◑
Theme
rust
/
rust
/
df734af6ae8a7fdc287c5da23fe610573bf2a761
/
.
/
tests
/
ui
/
parser
/
numeric-lifetime.rs
blob: 2d82354c62cca706fa9c17c35ed5b5f7e3575034 [
file
]
struct
S
<
'1> { s: &'
1
usize
}
//~^ ERROR lifetimes cannot start with a number
//~| ERROR lifetimes cannot start with a number
fn
main
()
{
// verify that the parse error doesn't stop type checking
let
x
:
usize
=
""
;
//~^ ERROR mismatched types
}