mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
33 lines
638 B
Plaintext
33 lines
638 B
Plaintext
error: `_` cannot be a raw lifetime
|
|
--> $DIR/raw-lt-invalid-raw-id.rs:9:4
|
|
|
|
|
LL | w!('r#_);
|
|
| ^^^^
|
|
|
|
error: `self` cannot be a raw lifetime
|
|
--> $DIR/raw-lt-invalid-raw-id.rs:11:4
|
|
|
|
|
LL | w!('r#self);
|
|
| ^^^^^^^
|
|
|
|
error: `super` cannot be a raw lifetime
|
|
--> $DIR/raw-lt-invalid-raw-id.rs:13:4
|
|
|
|
|
LL | w!('r#super);
|
|
| ^^^^^^^^
|
|
|
|
error: `Self` cannot be a raw lifetime
|
|
--> $DIR/raw-lt-invalid-raw-id.rs:15:4
|
|
|
|
|
LL | w!('r#Self);
|
|
| ^^^^^^^
|
|
|
|
error: `crate` cannot be a raw lifetime
|
|
--> $DIR/raw-lt-invalid-raw-id.rs:17:4
|
|
|
|
|
LL | w!('r#crate);
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|