Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
pretty
/
block-arg-disambig.rs
blob: 4bc01f1c6a9b05159658c78fed8c4b3d4e852dc4 [
file
]
// FIXME: The disambiguation the pretty printer does here
// is probably not necessary anymore (#2882)
fn
blk1
(
b
:
fn
())
->
fn
@()
{
return
fn
@()
{
};
}
fn
test1
()
{
(
do
blk1
{
debug
!(
"hi"
);
})();
}