2015-11-11 19:18:02 +00:00
|
|
|
mod foo {
|
2016-04-25 00:12:12 +00:00
|
|
|
pub const b: u8 = 2;
|
2024-11-06 21:28:26 +00:00
|
|
|
//~^ missing patterns are not covered because `b` is interpreted as a constant pattern, not a new variable
|
2024-11-07 19:34:23 +00:00
|
|
|
pub const d: (u8, u8) = (2, 1);
|
2024-11-06 19:46:54 +00:00
|
|
|
//~^ missing patterns are not covered because `d` is interpreted as a constant pattern, not a new variable
|
2015-11-11 19:18:02 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 19:54:34 +00:00
|
|
|
use foo::b as c;
|
|
|
|
use foo::d;
|
2015-11-11 19:18:02 +00:00
|
|
|
|
2017-10-05 19:54:34 +00:00
|
|
|
const a: u8 = 2;
|
2024-11-06 19:46:54 +00:00
|
|
|
//~^ missing patterns are not covered because `a` is interpreted as a constant pattern, not a new variable
|
2015-11-11 19:18:02 +00:00
|
|
|
|
2024-11-07 19:34:23 +00:00
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct S {
|
|
|
|
foo: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
const e: S = S {
|
|
|
|
foo: 0,
|
|
|
|
};
|
|
|
|
|
2015-11-11 19:18:02 +00:00
|
|
|
fn main() {
|
2022-12-23 20:02:23 +00:00
|
|
|
let a = 4;
|
|
|
|
//~^ ERROR refutable pattern in local binding
|
|
|
|
//~| patterns `0_u8..=1_u8` and `3_u8..=u8::MAX` not covered
|
|
|
|
//~| HELP introduce a variable instead
|
|
|
|
let c = 4;
|
|
|
|
//~^ ERROR refutable pattern in local binding
|
|
|
|
//~| patterns `0_u8..=1_u8` and `3_u8..=u8::MAX` not covered
|
|
|
|
//~| HELP introduce a variable instead
|
2024-11-07 19:34:23 +00:00
|
|
|
let d = (4, 4);
|
2022-12-23 20:02:23 +00:00
|
|
|
//~^ ERROR refutable pattern in local binding
|
2024-11-07 19:34:23 +00:00
|
|
|
//~| patterns `(0_u8..=1_u8, _)` and `(3_u8..=u8::MAX, _)` not covered
|
|
|
|
//~| HELP introduce a variable instead
|
|
|
|
let e = S {
|
|
|
|
//~^ ERROR refutable pattern in local binding
|
|
|
|
//~| pattern `S { foo: 1_u8..=u8::MAX }` not covered
|
2022-12-23 20:02:23 +00:00
|
|
|
//~| HELP introduce a variable instead
|
2024-11-07 19:34:23 +00:00
|
|
|
foo: 1,
|
|
|
|
};
|
2018-11-27 02:59:49 +00:00
|
|
|
fn f() {} // Check that the `NOTE`s still work with an item here (cf. issue #35115).
|
2015-11-11 19:18:02 +00:00
|
|
|
}
|