about summary refs log tree commit diff
path: root/tests/ui/pub/pub-ident-fn-with-lifetime.fixed
blob: 2c0d8849cdd634cb22ee1bd87ba5b7c5b8a843c1 (plain)
1
2
3
4
5
6
7
8
//@ run-rustfix

pub fn foo<'a>(_s: &'a usize) -> bool { true }
//~^ ERROR missing `fn` for function definition

fn main() {
    foo(&2);
}