]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/fn-arg-doc-comment.stderr
Auto merge of #63871 - BatmanAoD:FloatFnMustUse, r=withoutboats
[rust.git] / src / test / ui / parser / fn-arg-doc-comment.stderr
1 error: attributes cannot be applied to a function parameter's type
2   --> $DIR/fn-arg-doc-comment.rs:12:12
3    |
4 LL | fn bar(id: #[allow(dead_code)] i32) {}
5    |            ^^^^^^^^^^^^^^^^^^^ attributes are not allowed here
6
7 error: documentation comments cannot be applied to function parameters
8   --> $DIR/fn-arg-doc-comment.rs:2:5
9    |
10 LL |     /// Comment
11    |     ^^^^^^^^^^^ doc comments are not allowed here
12
13 error: documentation comments cannot be applied to function parameters
14   --> $DIR/fn-arg-doc-comment.rs:6:5
15    |
16 LL |     /// Other
17    |     ^^^^^^^^^ doc comments are not allowed here
18
19 error[E0308]: mismatched types
20   --> $DIR/fn-arg-doc-comment.rs:18:7
21    |
22 LL |     f("", "");
23    |       ^^ expected u8, found reference
24    |
25    = note: expected type `u8`
26               found type `&'static str`
27
28 error[E0308]: mismatched types
29   --> $DIR/fn-arg-doc-comment.rs:18:11
30    |
31 LL |     f("", "");
32    |           ^^ expected u8, found reference
33    |
34    = note: expected type `u8`
35               found type `&'static str`
36
37 error[E0308]: mismatched types
38   --> $DIR/fn-arg-doc-comment.rs:25:9
39    |
40 LL |     bar("");
41    |         ^^ expected i32, found reference
42    |
43    = note: expected type `i32`
44               found type `&'static str`
45
46 error: aborting due to 6 previous errors
47
48 For more information about this error, try `rustc --explain E0308`.