Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
artificial-block.rs
blob: 037163b4174e28428c6bbfdf17db6fcbef28ac19 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
f
()
->
isize
{
{
return
3
;
}
}
pub
fn
main
()
{
assert_eq
!(
f
(),
3
);
}