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

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() {}