blob: 1a710c06f91ca05c8c5637e6259a3aa7fe2faa74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// error-pattern: mismatched types
use std;
import std::map::hashmap;
import std::bitv;
type fn_info = {vars: hashmap<uint, var_info>};
type var_info = {a: uint, b: uint};
fn bitv_to_str(enclosing: fn_info, v: bitv::t) -> str {
let s = "";
// error is that the value type in the hash map is var_info, not a box
for each p: @{key: uint, val: @uint} in enclosing.vars.items() {
if bitv::get(v, *p.val) { s += "foo"; }
}
ret s;
}
fn main() { log "OK"; }
|