mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 20:28:06 +00:00
9 lines
126 B
Rust
9 lines
126 B
Rust
//@ check-pass
|
|
//@ edition: 2021
|
|
|
|
// Checks a primitive name can be defined as a lifetime.
|
|
|
|
fn foo<'r#i32>() {}
|
|
|
|
fn main() {}
|