diff options
| author | Brian Anderson <[email protected]> | 2011-03-06 13:51:42 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-06 15:13:30 -0800 |
| commit | bed457d3a7244b317c54962d80b460294b846c27 (patch) | |
| tree | 8a258657af739e455733bc3cc5161033a37355a9 /src/test | |
| parent | Make _str.bytes use _vec.init_fn. Remove FIXME. (diff) | |
| download | rust-bed457d3a7244b317c54962d80b460294b846c27.tar.xz rust-bed457d3a7244b317c54962d80b460294b846c27.zip | |
Change io.fileflag to a tag type. Remove FIXME
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/lib-io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/lib-io.rs b/src/test/run-pass/lib-io.rs index e0665fb6..0c0bcdcd 100644 --- a/src/test/run-pass/lib-io.rs +++ b/src/test/run-pass/lib-io.rs @@ -11,7 +11,7 @@ fn test_simple(str tmpfilebase) { log frood; { - let io.buf_writer out = io.new_buf_writer(tmpfile, vec(io.create())); + let io.buf_writer out = io.new_buf_writer(tmpfile, vec(io.create)); out.write(_str.bytes(frood)); } |