mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 01:16:10 +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
|
|
|