Back to Rust Analyzer

Highlight Lifetimes

crates/ide/src/syntax_highlighting/test_data/highlight_lifetimes.html

2026-05-04193 B
Original Source
#[derive()]
struct Foo<'a, 'b, 'c> where 'a: 'a, 'static: 'static {
    field: &'a (),
    field2: &'static (),
}
impl<'a> Foo<'_, 'a, 'static>
where
    'a: 'a,
    'static: 'static
{}