2015-11-11 19:18:02 +00:00
|
|
|
mod foo {
|
2016-04-25 00:12:12 +00:00
|
|
|
pub const b: u8 = 2;
|
|
|
|
pub const d: u8 = 2;
|
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;
|
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
|
|
|
|
//~| missing patterns are not covered because `a` is interpreted as a constant pattern, not a new variable
|
|
|
|
//~| 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
|
|
|
|
//~| missing patterns are not covered because `c` is interpreted as a constant pattern, not a new variable
|
|
|
|
//~| HELP introduce a variable instead
|
|
|
|
let d = 4;
|
|
|
|
//~^ ERROR refutable pattern in local binding
|
|
|
|
//~| patterns `0_u8..=1_u8` and `3_u8..=u8::MAX` not covered
|
|
|
|
//~| missing patterns are not covered because `d` is interpreted as a constant pattern, not a new variable
|
|
|
|
//~| HELP introduce a variable instead
|
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
|
|
|
}
|