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

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

56 lines
1.6 KiB
Rust
Raw Normal View History

#![feature(extern_types)]
#![feature(coverage_attribute)]
#![feature(impl_trait_in_assoc_type)]
#![warn(unused_attributes)]
2023-08-09 14:57:16 +00:00
#![coverage(off)]
//~^ WARN: `#[coverage]` does not propagate into items and must be applied to the contained functions directly
2023-08-09 14:57:16 +00:00
#[coverage(off)]
//~^ WARN: `#[coverage]` does not propagate into items and must be applied to the contained functions directly
trait Trait {
2023-08-09 14:57:16 +00:00
#[coverage(off)] //~ ERROR `#[coverage]` must be applied to coverable code
const X: u32;
2023-08-09 14:57:16 +00:00
#[coverage(off)] //~ ERROR `#[coverage]` must be applied to coverable code
type T;
type U;
}
2023-08-09 14:57:16 +00:00
#[coverage(off)]
//~^ WARN: `#[coverage]` does not propagate into items and must be applied to the contained functions directly
impl Trait for () {
const X: u32 = 0;
2023-08-09 14:57:16 +00:00
#[coverage(off)] //~ ERROR `#[coverage]` must be applied to coverable code
type T = Self;
2023-08-09 14:57:16 +00:00
#[coverage(off)] //~ ERROR `#[coverage]` must be applied to coverable code
type U = impl Trait; //~ ERROR unconstrained opaque type
}
extern "C" {
2023-08-09 14:57:16 +00:00
#[coverage(off)] //~ ERROR `#[coverage]` must be applied to coverable code
static X: u32;
2023-08-09 14:57:16 +00:00
#[coverage(off)] //~ ERROR `#[coverage]` must be applied to coverable code
type T;
}
2023-08-09 14:57:16 +00:00
#[coverage(off)]
fn main() {
2023-08-09 14:57:16 +00:00
#[coverage(off)]
//~^ WARN `#[coverage]` may only be applied to function definitions
let _ = ();
match () {
2023-08-09 14:57:16 +00:00
#[coverage(off)]
//~^ WARN `#[coverage]` may only be applied to function definitions
() => (),
}
2023-08-09 14:57:16 +00:00
#[coverage(off)]
//~^ WARN `#[coverage]` may only be applied to function definitions
return ();
}