mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
7 lines
228 B
Rust
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() { }
|