Sign in
android
/
toolchain
/
rustc
/
5139364148b53d79de1b5e778004d41a6a33a4a2
/
.
/
tests
/
ui
/
maximal_mir_to_hir_coverage.rs
blob: 5ca54633f219a14650af9be6d11208443dc25bc2 [
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}"
);
}