2019-05-23 13:10:24 -07:00
|
|
|
error: unexpected `self` parameter in function
|
2019-05-23 12:54:27 -07:00
|
|
|
--> $DIR/self-in-function-arg.rs:1:15
|
|
|
|
|
|
|
|
|
LL | fn foo(x:i32, self: i32) -> i32 { self }
|
2019-05-23 13:10:24 -07:00
|
|
|
| ^^^^ not valid as function parameter
|
2019-05-23 12:54:27 -07:00
|
|
|
|
|
2019-05-23 13:10:24 -07:00
|
|
|
= note: `self` is only valid as the first parameter of an associated function
|
2019-05-23 12:54:27 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|