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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
106 B
Rust
Raw Normal View History

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