File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
struct S < ' 1 > { s : & ' 1 usize }
2
- //~^ ERROR lifetimes cannot start with a number
3
- //~| ERROR lifetimes cannot start with a number
2
+ //~^ ERROR lifetimes or labels cannot start with a number
3
+ //~| ERROR lifetimes or labels cannot start with a number
4
4
fn main ( ) {
5
5
// verify that the parse error doesn't stop type checking
6
6
let x: usize = "";
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ LL | let x: usize = "";
6
6
| |
7
7
| expected due to this
8
8
9
- error: lifetimes cannot start with a number
9
+ error: lifetimes or labels cannot start with a number
10
10
--> $DIR/numeric-lifetime.rs:1:10
11
11
|
12
12
LL | struct S<'1> { s: &'1 usize }
13
13
| ^^
14
14
15
- error: lifetimes cannot start with a number
15
+ error: lifetimes or labels cannot start with a number
16
16
--> $DIR/numeric-lifetime.rs:1:20
17
17
|
18
18
LL | struct S<'1> { s: &'1 usize }
You can’t perform that action at this time.
0 commit comments