blob: e57c83d007e07d06ef38a6f1af073f07f3e7886d [file] [log] [blame]
//@ 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}");
}