rust/src/test/ui/invalid-self-argument/trait-fn.stderr

9 lines
250 B
Plaintext
Raw Normal View History

2018-11-16 12:35:13 -06:00
error: unexpected `self` argument in function
--> $DIR/trait-fn.rs:4:20
|
LL | fn c(foo: u32, self) {}
2018-11-20 07:43:16 -06:00
| ^^^^ `self` is only valid as the first argument of an associated function
2018-11-16 12:35:13 -06:00
error: aborting due to previous error