rust/tests/ui/future-incompatible-lint-gr...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
937 B
Plaintext
Raw Normal View History

2021-10-03 14:53:02 +08:00
warning: anonymous parameters are deprecated and will be removed in the next edition
--> $DIR/future-incompatible-lint-group.rs:7:10
2018-08-08 20:28:26 +08:00
|
2019-03-09 20:03:44 +08:00
LL | fn f(u8) {}
2020-01-10 22:13:05 +08:00
| ^^ help: try naming the parameter or explicitly ignoring it: `_: u8`
2018-08-08 20:28:26 +08:00
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
2022-09-18 23:55:36 +08:00
= note: `#[warn(anonymous_parameters)]` on by default
error: this attribute can only be applied at the crate level
--> $DIR/future-incompatible-lint-group.rs:13:12
|
LL | #![doc(test(some_test))]
| ^^^^^^^^^^^^^^^
|
2022-09-18 23:55:36 +08:00
= note: read <https://doc.rust-lang.org/nightly/rustdoc/the-doc-attribute.html#at-the-crate-level> for more information
2024-02-29 21:43:11 +08:00
= note: `#[deny(invalid_doc_attributes)]` on by default
2018-08-08 20:28:26 +08:00
error: aborting due to 1 previous error; 1 warning emitted
2018-08-08 20:28:26 +08:00