]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid-self-argument/bare-fn.rs
27e56a537139f933e009e14034438730fbecff28
[rust.git] / src / test / ui / invalid-self-argument / bare-fn.rs
1 fn b(foo: u32, &mut self) { }
2 //~^ ERROR unexpected `self` argument in function
3 //~| NOTE `self` is only valid as the first argument of a trait function
4
5 fn main() { }