Remove temporary fn# syntax

This commit is contained in:
Brian Anderson 2011-10-20 20:34:04 -07:00
parent 6fb9d4f83b
commit ebc61e39d7
75 changed files with 111 additions and 122 deletions

View file

@ -195,7 +195,7 @@ fn closure_to_task(cx: cx, configport: port<[u8]>, testfn: fn@()) ->
(cx.config, cx.procsrv.chan, testfile), run_test_task);
}
fn# run_test_task(args: (common::config, procsrv::reqchan, [u8])) {
fn run_test_task(args: (common::config, procsrv::reqchan, [u8])) {
let (config, procsrv_chan, testfile) = args;

View file

@ -39,7 +39,7 @@ fn mk() -> handle {
let setupport = port();
let task = task::spawn_joinable(
chan(setupport),
fn# (setupchan: chan<chan<request>>) {
fn (setupchan: chan<chan<request>>) {
let reqport = port();
let reqchan = chan(reqport);
send(setupchan, reqchan);