Files
rust/tests/ui/lifetimes/raw/lifetimes-eq.rs

9 lines
106 B
Rust
Raw Normal View History

2024-06-13 20:56:28 -04:00
//@ edition: 2021
//@ check-pass
// Test that `'r#a` is `'a`.
fn test<'r#a>(x: &'a ()) {}
fn main() {}