This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b4d1f1b2c1
rust
/
src
/
test
/
run-pass
/
fn-bare-coerce-to-block.rs
7 lines
83 B
Rust
Raw
Normal View
History
Unescape
Escape
Remove temporary fn# syntax
2011-10-20 22:34:04 -05:00
fn
bare
(
)
{
}
Bare functions can coerce to blocks
2011-10-14 17:22:25 -05:00
s/block()/fn()/g
2012-01-23 16:59:00 -06:00
fn
likes_block
(
f
:
fn
(
)
)
{
f
(
)
}
Bare functions can coerce to blocks
2011-10-14 17:22:25 -05:00
fn
main
(
)
{
likes_block
(
bare
)
;
}
Reference in New Issue
Copy Permalink