blob: 7c580bc5a5deaa1d2ff46b6dece1c6b5e6cd1e43 (
plain)
1
2
3
4
5
6
|
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() { }
|