Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
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
}