Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
mir-opt
/
inline
/
issue_76997_inline_scopes_parenting.rs
blob: 76d806acc63491e97118171a14b1a2260e33fe94 [
file
] [
log
] [
blame
]
// Tests that MIR inliner can handle `SourceScopeData` parenting correctly. (#76997)
// EMIT_MIR issue_76997_inline_scopes_parenting.main.Inline.after.mir
fn
main
()
{
let
f
=
|
x
|
{
let
y
=
x
;
y
};
f
(())
}