aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/comm-makes-io.rs
blob: 4a0f704a0d225ffa0e1b2cdb4c7ecec4f5e0927e (plain) (blame)
1
2
3
4
5
6
7
// xfail-stage0
// error-pattern: calculated effect is 'impure'

fn main() {
  let chan[int] c = chan();
  c <| 10;
}