summary refs log tree commit diff
path: root/src/test/ui/pub/pub-ident-fn-with-lifetime.rs
blob: 84f7bdc1fb14796d9bd4642eacc072fcb5a86934 (plain)
1
2
3
4
5
6
pub   foo<'a>(_s: &'a usize) -> bool { true }
//~^ ERROR missing `fn` for function definition

fn main() {
    foo(2);
}