rust/tests/ui/invalid-self-argument/bare-fn-start.rs
2023-01-11 09:32:08 +00:00

7 lines
228 B
Rust

fn a(&self) { }
//~^ ERROR `self` parameter is only allowed in associated functions
//~| NOTE not semantically valid as function parameter
//~| NOTE associated functions are those in `impl` or `trait` definitions
fn main() { }