Skip to content

Commit 98b82ae

Browse files
committed
Update numeric lifetime test
1 parent 380fa26 commit 98b82ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/ui/parser/numeric-lifetime.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
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
44
fn main() {
55
// verify that the parse error doesn't stop type checking
66
let x: usize = "";

tests/ui/parser/numeric-lifetime.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ LL | let x: usize = "";
66
| |
77
| expected due to this
88

9-
error: lifetimes cannot start with a number
9+
error: lifetimes or labels cannot start with a number
1010
--> $DIR/numeric-lifetime.rs:1:10
1111
|
1212
LL | struct S<'1> { s: &'1 usize }
1313
| ^^
1414

15-
error: lifetimes cannot start with a number
15+
error: lifetimes or labels cannot start with a number
1616
--> $DIR/numeric-lifetime.rs:1:20
1717
|
1818
LL | struct S<'1> { s: &'1 usize }

0 commit comments

Comments
 (0)