mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
198 B
Rust
11 lines
198 B
Rust
// compile-flags: -Zmaximal-hir-to-mir-coverage
|
|
// run-pass
|
|
|
|
// Just making sure this flag is accepted and doesn't crash the compiler
|
|
|
|
fn main() {
|
|
let x = 1;
|
|
let y = x + 1;
|
|
println!("{y}");
|
|
}
|