rust/tests/ui/parser/numeric-lifetime.rs
许杰友 Jieyou Xu (Joe) 98b82aedba
Update numeric lifetime test
2023-02-14 18:17:59 +08:00

9 lines
277 B
Rust

struct S<'1> { s: &'1 usize }
//~^ ERROR lifetimes or labels cannot start with a number
//~| ERROR lifetimes or labels cannot start with a number
fn main() {
// verify that the parse error doesn't stop type checking
let x: usize = "";
//~^ ERROR mismatched types
}