
One or two tests became build-pass without the FIXME because they really needed build-pass (were failing without it). Helps with #62277
8 lines
180 B
Rust
8 lines
180 B
Rust
// check-pass
|
|
|
|
fn main() {
|
|
let _ = "Foo"_;
|
|
//~^ WARNING underscore literal suffix is not allowed
|
|
//~| WARNING this was previously accepted
|
|
//~| NOTE issue #42326
|
|
}
|