rust/tests/ui/lint/no-coverage.stderr

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

102 lines
2.8 KiB
Plaintext
Raw Normal View History

2023-08-09 14:57:16 +00:00
warning: `#[coverage]` does not propagate into items and must be applied to the contained functions directly
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:8:1
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> $DIR/no-coverage.rs:4:9
|
LL | #![warn(unused_attributes)]
| ^^^^^^^^^^^^^^^^^
2023-08-09 14:57:16 +00:00
warning: `#[coverage]` does not propagate into items and must be applied to the contained functions directly
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:20:1
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
2022-06-06 02:24:14 +00:00
2023-08-09 14:57:16 +00:00
warning: `#[coverage]` may only be applied to function definitions
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:42:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
2022-06-06 02:24:14 +00:00
2023-08-09 14:57:16 +00:00
warning: `#[coverage]` may only be applied to function definitions
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:47:9
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
2023-08-09 14:57:16 +00:00
warning: `#[coverage]` may only be applied to function definitions
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:52:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
2023-08-09 14:57:16 +00:00
error[E0788]: `#[coverage]` must be applied to coverable code
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:11:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
LL | const X: u32;
| ------------- not coverable code
2023-08-09 14:57:16 +00:00
error[E0788]: `#[coverage]` must be applied to coverable code
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:14:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
LL | type T;
| ------- not coverable code
2023-08-09 14:57:16 +00:00
error[E0788]: `#[coverage]` must be applied to coverable code
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:25:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
LL | type T = Self;
| -------------- not coverable code
2023-08-09 14:57:16 +00:00
error[E0788]: `#[coverage]` must be applied to coverable code
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:28:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
LL | type U = impl Trait;
| -------------------- not coverable code
2023-08-09 14:57:16 +00:00
error[E0788]: `#[coverage]` must be applied to coverable code
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:33:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
LL | static X: u32;
| -------------- not coverable code
2023-08-09 14:57:16 +00:00
error[E0788]: `#[coverage]` must be applied to coverable code
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:36:5
|
2023-08-09 14:57:16 +00:00
LL | #[coverage(off)]
| ^^^^^^^^^^^^^^^^
LL | type T;
| ------- not coverable code
2023-08-09 14:57:16 +00:00
warning: `#[coverage]` does not propagate into items and must be applied to the contained functions directly
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:5:1
|
2023-08-09 14:57:16 +00:00
LL | #![coverage(off)]
| ^^^^^^^^^^^^^^^^^
2022-06-06 02:24:14 +00:00
error: unconstrained opaque type
2022-06-06 02:24:14 +00:00
--> $DIR/no-coverage.rs:29:14
|
LL | type U = impl Trait;
| ^^^^^^^^^^
|
2022-10-22 03:09:49 +00:00
= note: `U` must be used in combination with a concrete type within the same impl
2022-06-06 02:24:14 +00:00
error: aborting due to 7 previous errors; 6 warnings emitted
For more information about this error, try `rustc --explain E0788`.