rust/src/test/ui/parser/fn-arg-doc-comment.stderr

40 lines
1.1 KiB
Plaintext
Raw Normal View History

error: attributes cannot be applied to a function parameter's type
2019-08-29 18:44:30 -05:00
--> $DIR/fn-arg-doc-comment.rs:12:12
|
LL | fn bar(id: #[allow(dead_code)] i32) {}
| ^^^^^^^^^^^^^^^^^^^ attributes are not allowed here
error: documentation comments cannot be applied to function parameters
--> $DIR/fn-arg-doc-comment.rs:2:5
|
LL | /// Comment
| ^^^^^^^^^^^ doc comments are not allowed here
error: documentation comments cannot be applied to function parameters
2019-08-29 18:44:30 -05:00
--> $DIR/fn-arg-doc-comment.rs:6:5
|
LL | /// Other
| ^^^^^^^^^ doc comments are not allowed here
error[E0308]: mismatched types
2019-08-29 18:44:30 -05:00
--> $DIR/fn-arg-doc-comment.rs:18:7
|
LL | f("", "");
| ^^ expected `u8`, found `&str`
error[E0308]: mismatched types
2019-08-29 18:44:30 -05:00
--> $DIR/fn-arg-doc-comment.rs:18:11
|
LL | f("", "");
| ^^ expected `u8`, found `&str`
error[E0308]: mismatched types
--> $DIR/fn-arg-doc-comment.rs:23:9
|
LL | bar("");
| ^^ expected `i32`, found `&str`
2019-08-29 18:44:30 -05:00
error: aborting due to 6 previous errors
2019-08-29 18:44:30 -05:00
For more information about this error, try `rustc --explain E0308`.