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

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