summary refs log tree commit diff
path: root/src/test/ui/parser/fn-arg-doc-comment.stderr
blob: 41f2c080b9465532d553f9d2febab3c791f8fb1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
error: attributes cannot be applied to a function parameter's type
  --> $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
  --> $DIR/fn-arg-doc-comment.rs:6:5
   |
LL |     /// Other
   |     ^^^^^^^^^ doc comments are not allowed here

error[E0308]: mismatched types
  --> $DIR/fn-arg-doc-comment.rs:18:7
   |
LL |     f("", "");
   |       ^^ expected `u8`, found `&str`

error[E0308]: mismatched types
  --> $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`

error: aborting due to 6 previous errors

For more information about this error, try `rustc --explain E0308`.