aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/lifetime_name_validation.rs
blob: 2d67bd6ee78c7dd3487550ad91fc56edc4d7a2f8 (plain)
1
2
3
4
5
6
pub fn one<'continue>() {} // { dg-error "lifetimes cannot use keyword names" }
pub fn two<'_>() {}

pub fn three<'static>() {}

pub fn four<'loop>() {} // { dg-error "lifetimes cannot use keyword names" }