Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
do-lambda-requires-braces.rs
blob: 8610da71a3f33c97a03d2eed4183573e7ae5dc92 [
file
] [
log
] [
blame
]
fn
main
()
{
do
something
|
x
|
do
somethingelse
//~ ERROR: expected `{` but found `do`
|
y
|
say
(
x
,
y
)
}