about summary refs log tree commit diff
path: root/src/test/compile-fail/for-loop-decl.rs
blob: 2dc8cacc4b2fcb2791172a5d1e8ab384f972a38f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// error-pattern: mismatched types
use std;
import std::map::hashmap;
import std::bitv;

type fn_info = rec(hashmap[uint, var_info] vars);
type var_info = rec(uint a, uint b);

fn bitv_to_str(fn_info enclosing, bitv::t v) -> str {
  auto s = "";

  // error is that the value type in the hash map is var_info, not a tuple
  for each (@tup(uint, tup(uint, uint)) p in enclosing.vars.items()) {
    if (bitv::get(v, p._1._0)) {
      s += "foo";
    }
  }
  ret s;
}

fn main() {
  log "OK";
}