about summary refs log tree commit diff
path: root/tests/ui/lifetimes/raw/static-lt.rs
blob: 1fec7097dab26fcb0c2e684ece197feeeb81c4cd (plain)
1
2
3
4
5
6
7
8
//@ check-pass
//@ edition: 2021

// Makes sure that `'r#static` is `'static`

const FOO: &'r#static str = "hello, world";

fn main() {}