Files
rust/tests/ui/lifetimes/raw/static-lt.rs

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

9 lines
137 B
Rust
Raw Normal View History

2024-06-13 20:56:28 -04:00
//@ check-pass
//@ edition: 2021
// Makes sure that `'r#static` is `'static`
const FOO: &'r#static str = "hello, world";
fn main() {}