1
1
error: attributes cannot be applied to a function parameter's type
2
- --> $DIR/fn-arg-doc-comment.rs:16 :12
2
+ --> $DIR/fn-arg-doc-comment.rs:12 :12
3
3
|
4
4
LL | fn bar(id: #[allow(dead_code)] i32) {}
5
5
| ^^^^^^^^^^^^^^^^^^^ attributes are not allowed here
@@ -11,31 +11,13 @@ LL | /// Comment
11
11
| ^^^^^^^^^^^ doc comments are not allowed here
12
12
13
13
error: documentation comments cannot be applied to function parameters
14
- --> $DIR/fn-arg-doc-comment.rs:8 :5
14
+ --> $DIR/fn-arg-doc-comment.rs:6 :5
15
15
|
16
16
LL | /// Other
17
17
| ^^^^^^^^^ doc comments are not allowed here
18
18
19
- error[E0658]: attributes on function parameters are unstable
20
- --> $DIR/fn-arg-doc-comment.rs:2:5
21
- |
22
- LL | /// Comment
23
- | ^^^^^^^^^^^
24
- |
25
- = note: for more information, see https://github.com/rust-lang/rust/issues/60406
26
- = help: add `#![feature(param_attrs)]` to the crate attributes to enable
27
-
28
- error[E0658]: attributes on function parameters are unstable
29
- --> $DIR/fn-arg-doc-comment.rs:8:5
30
- |
31
- LL | /// Other
32
- | ^^^^^^^^^
33
- |
34
- = note: for more information, see https://github.com/rust-lang/rust/issues/60406
35
- = help: add `#![feature(param_attrs)]` to the crate attributes to enable
36
-
37
19
error[E0308]: mismatched types
38
- --> $DIR/fn-arg-doc-comment.rs:22 :7
20
+ --> $DIR/fn-arg-doc-comment.rs:18 :7
39
21
|
40
22
LL | f("", "");
41
23
| ^^ expected u8, found reference
@@ -44,7 +26,7 @@ LL | f("", "");
44
26
found type `&'static str`
45
27
46
28
error[E0308]: mismatched types
47
- --> $DIR/fn-arg-doc-comment.rs:22 :11
29
+ --> $DIR/fn-arg-doc-comment.rs:18 :11
48
30
|
49
31
LL | f("", "");
50
32
| ^^ expected u8, found reference
@@ -53,15 +35,14 @@ LL | f("", "");
53
35
found type `&'static str`
54
36
55
37
error[E0308]: mismatched types
56
- --> $DIR/fn-arg-doc-comment.rs:29 :9
38
+ --> $DIR/fn-arg-doc-comment.rs:25 :9
57
39
|
58
40
LL | bar("");
59
41
| ^^ expected i32, found reference
60
42
|
61
43
= note: expected type `i32`
62
44
found type `&'static str`
63
45
64
- error: aborting due to 8 previous errors
46
+ error: aborting due to 6 previous errors
65
47
66
- Some errors have detailed explanations: E0308, E0658.
67
- For more information about an error, try `rustc --explain E0308`.
48
+ For more information about this error, try `rustc --explain E0308`.
0 commit comments