about summary refs log tree commit diff
path: root/tests/ui/parser/recover/recover-assoc-lifetime-constraint.rs
blob: 30bac49e63a5fe801c41fdab55cd24a2ef1437ab (plain)
1
2
3
4
5
6
#[cfg(false)]
fn syntax() {
    bar::<Item = 'a>(); //~ ERROR lifetimes are not permitted in this context
}

fn main() {}