rust/tests/ui/malformed/malformed-regressions.stderr

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

49 lines
2.3 KiB
Plaintext
Raw Normal View History

2024-04-15 18:07:22 +00:00
error: valid forms for the attribute are `#[doc(hidden|inline|...)]` and `#[doc = "string"]`
2019-10-26 22:14:49 +00:00
--> $DIR/malformed-regressions.rs:1:1
|
2019-03-09 12:03:44 +00:00
LL | #[doc]
| ^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2019-01-12 16:00:42 +00:00
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
2022-09-18 15:55:36 +00:00
= note: `#[deny(ill_formed_attribute_input)]` on by default
2024-04-15 18:07:22 +00:00
error: valid forms for the attribute are `#[ignore]` and `#[ignore = "reason"]`
2019-10-26 22:14:49 +00:00
--> $DIR/malformed-regressions.rs:3:1
|
2019-03-09 12:03:44 +00:00
LL | #[ignore()]
| ^^^^^^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2019-01-12 16:00:42 +00:00
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
2024-04-15 18:07:22 +00:00
error: valid forms for the attribute are `#[inline]` and `#[inline(always|never)]`
2019-10-26 22:14:49 +00:00
--> $DIR/malformed-regressions.rs:5:1
|
2019-03-09 12:03:44 +00:00
LL | #[inline = ""]
| ^^^^^^^^^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2019-01-12 16:00:42 +00:00
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
2022-07-12 20:52:35 +00:00
error: attribute must be of the form `#[link(name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ wasm_import_module = "...", /*opt*/ import_name_type = "decorated|noprefix|undecorated")]`
2019-10-26 22:14:49 +00:00
--> $DIR/malformed-regressions.rs:7:1
|
2019-03-09 12:03:44 +00:00
LL | #[link]
| ^^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2019-01-12 16:00:42 +00:00
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
2022-07-12 20:52:35 +00:00
error: attribute must be of the form `#[link(name = "...", /*opt*/ kind = "dylib|static|...", /*opt*/ wasm_import_module = "...", /*opt*/ import_name_type = "decorated|noprefix|undecorated")]`
2019-10-26 22:14:49 +00:00
--> $DIR/malformed-regressions.rs:9:1
|
2019-03-09 12:03:44 +00:00
LL | #[link = ""]
| ^^^^^^^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2019-01-12 16:00:42 +00:00
= note: for more information, see issue #57571 <https://github.com/rust-lang/rust/issues/57571>
2019-10-26 22:14:49 +00:00
error: aborting due to 5 previous errors