2019-06-09 05:58:40 -05:00
|
|
|
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
|
2019-06-09 05:58:40 -05:00
|
|
|
|
|
|
|
|
LL | fn bar(id: #[allow(dead_code)] i32) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ attributes are not allowed here
|
|
|
|
|
|
|
|
error: documentation comments cannot be applied to function parameters
|
2018-10-28 13:38:50 -05:00
|
|
|
--> $DIR/fn-arg-doc-comment.rs:2:5
|
|
|
|
|
|
|
|
|
LL | /// Comment
|
|
|
|
| ^^^^^^^^^^^ doc comments are not allowed here
|
|
|
|
|
2019-06-09 05:58:40 -05:00
|
|
|
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
|
2018-10-28 13:38:50 -05:00
|
|
|
|
|
|
|
|
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
|
2018-10-28 13:38:50 -05:00
|
|
|
|
|
|
|
|
LL | f("", "");
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^ expected `u8`, found `&str`
|
2018-10-28 13:38:50 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2019-08-29 18:44:30 -05:00
|
|
|
--> $DIR/fn-arg-doc-comment.rs:18:11
|
2018-10-28 13:38:50 -05:00
|
|
|
|
|
|
|
|
LL | f("", "");
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^ expected `u8`, found `&str`
|
2018-10-28 13:38:50 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2019-11-15 01:45:30 -06:00
|
|
|
--> $DIR/fn-arg-doc-comment.rs:23:9
|
2018-10-28 13:38:50 -05:00
|
|
|
|
|
|
|
|
LL | bar("");
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^ expected `i32`, found `&str`
|
2018-10-28 13:38:50 -05:00
|
|
|
|
2019-08-29 18:44:30 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2018-10-28 13:38:50 -05:00
|
|
|
|
2019-08-29 18:44:30 -05:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|