rust/src/test/ui/suggestions/pub-ident-fn-2.stderr

13 lines
271 B
Plaintext
Raw Normal View History

error: missing `fn` for method definition
--> $DIR/pub-ident-fn-2.rs:11:4
|
11 | pub foo(s: usize) { bar() }
| ^
help: add `fn` here to parse `foo` as a public method
|
11 | pub fn foo(s: usize) { bar() }
| ^^
error: aborting due to previous error