mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 08:16:56 +00:00
10 lines
197 B
Rust
10 lines
197 B
Rust
//@ compile-flags: -Zunpretty=hir
|
|
//@ check-fail
|
|
//@ edition: 2015
|
|
|
|
// In #100948 this caused an ICE with -Zunpretty=hir.
|
|
fn main() {
|
|
1u;
|
|
//~^ ERROR invalid suffix `u` for number literal
|
|
}
|