aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/basic.rs
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-11-02 11:11:58 -0700
committerGraydon Hoare <[email protected]>2010-11-02 11:11:58 -0700
commitda13c508d83032ca13679e1e122e96d25ac23283 (patch)
tree51c3d466dfedf3ad8e21b56c4769325561b3d650 /src/test/run-pass/basic.rs
parentUn-XFAIL self tests on Darwin (diff)
downloadrust-da13c508d83032ca13679e1e122e96d25ac23283.tar.xz
rust-da13c508d83032ca13679e1e122e96d25ac23283.zip
First pass on splitting stratum and opacity off of effects. WIP.
Diffstat (limited to 'src/test/run-pass/basic.rs')
-rw-r--r--src/test/run-pass/basic.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/run-pass/basic.rs b/src/test/run-pass/basic.rs
index 95e4bff8..a92247c9 100644
--- a/src/test/run-pass/basic.rs
+++ b/src/test/run-pass/basic.rs
@@ -1,6 +1,6 @@
// -*- rust -*-
-io fn a(chan[int] c) {
+impure fn a(chan[int] c) {
if (true) {
log "task a";
log "task a";
@@ -22,7 +22,7 @@ fn g(int x, str y) -> int {
ret z;
}
-io fn main() {
+impure fn main() {
let int n = 2 + 3 * 7;
let str s = "hello there";
let port[int] p = port();
@@ -37,7 +37,7 @@ io fn main() {
log "children finished, root finishing";
}
-io fn b(chan[int] c) {
+impure fn b(chan[int] c) {
if (true) {
log "task b";
log "task b";