rust/tests/ui/maximal_mir_to_hir_coverage.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
200 B
Rust
Raw Normal View History

//@ 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}");
}