Sign in
fuchsia
/
third_party
/
rust
/
6774856e0c81f6cbedd772d295a21005d04a9224
/
.
/
tests
/
ui
/
maximal_mir_to_hir_coverage.rs
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}"
);
}