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

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