mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 11:14:42 +00:00
14 lines
216 B
Rust
14 lines
216 B
Rust
//@ revisions: e2021 e2024
|
|
|
|
//@[e2021] edition:2021
|
|
//@[e2024] edition:2024
|
|
|
|
//@[e2021] check-pass
|
|
|
|
fn raw_gen_lt<'r#gen>() {}
|
|
|
|
fn gen_lt<'gen>() {}
|
|
//[e2024]~^ ERROR lifetimes cannot use keyword names
|
|
|
|
fn main() {}
|