blob: 3c3645dc2c0180b33c80c0ce7308410da13d7fbb [file] [log] [blame] [edit]
//@ edition: 2021
// Regression test for #148542
// Ensure we don't ICE with "Invalid `ConstKind` for `const_to_pat`: {const error}"
fn foo() where &str:, {
//~^ ERROR `&` without an explicit lifetime name cannot be used here
match 42_u8 {
-10.. => {}
}
}
fn main() {}