Files
rust/tests/ui/loop-match/invalid-attribute.stderr

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

116 lines
2.9 KiB
Plaintext
Raw Normal View History

error: `#[loop_match]` attribute cannot be used on crates
--> $DIR/invalid-attribute.rs:6:1
|
LL | #![loop_match]
| ^^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on crates
--> $DIR/invalid-attribute.rs:7:1
|
LL | #![const_continue]
| ^^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on foreign functions
--> $DIR/invalid-attribute.rs:10:5
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on foreign functions
--> $DIR/invalid-attribute.rs:11:5
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on structs
--> $DIR/invalid-attribute.rs:15:1
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on structs
--> $DIR/invalid-attribute.rs:16:1
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on required trait methods
--> $DIR/invalid-attribute.rs:24:5
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on required trait methods
--> $DIR/invalid-attribute.rs:25:5
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on functions
--> $DIR/invalid-attribute.rs:29:1
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on functions
--> $DIR/invalid-attribute.rs:30:1
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on closures
--> $DIR/invalid-attribute.rs:34:5
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on closures
--> $DIR/invalid-attribute.rs:35:5
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[const_continue]` should be applied to a break expression
--> $DIR/invalid-attribute.rs:40:9
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
LL | 5
| - not a break expression
error: `#[loop_match]` should be applied to a loop
--> $DIR/invalid-attribute.rs:39:9
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
LL | #[const_continue]
LL | 5
| - not a loop
error: aborting due to 14 previous errors