]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pub/pub-ident-fn-with-lifetime-2.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / pub / pub-ident-fn-with-lifetime-2.rs
CommitLineData
0731742a
XL
1pub bar<'a>(&self, _s: &'a usize) -> bool { true }
2//~^ ERROR missing `fn` for method definition
3
4fn main() {
5 bar(2);
6}