about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0262.rs
blob: 460ea95148c403a3d833e55efa3fd367e960de9b (plain)
1
2
3
4
fn foo<'static>(x: &'static str) { } //~ ERROR E0262
                                     //~| NOTE 'static is a reserved lifetime name

fn main() {}