]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/self-in-function-arg.stderr
parser: address review comments re. `self`.
[rust.git] / src / test / ui / parser / self-in-function-arg.stderr
index f58df9b9e79b327a20c0c389d42b7affd2a3d444..47d8381b0b1dad4322fcc4935f9c73de6a0a001f 100644 (file)
@@ -2,9 +2,7 @@ error: unexpected `self` parameter in function
   --> $DIR/self-in-function-arg.rs:1:15
    |
 LL | fn foo(x:i32, self: i32) -> i32 { self }
-   |               ^^^^ not valid as function parameter
-   |
-   = note: `self` is only valid as the first parameter of an associated function
+   |               ^^^^ must be the first parameter of an associated function
 
 error: aborting due to previous error