2012-04-06 08:58:41 -05:00
|
|
|
type foo = {a: int, b: int};
|
|
|
|
type bar = {a: int, b: uint};
|
|
|
|
|
|
|
|
fn want_foo(f: foo) {}
|
|
|
|
fn have_bar(b: bar) {
|
2012-08-13 17:06:13 -05:00
|
|
|
want_foo(b); //~ ERROR (in field `b`, expected int but found uint)
|
2012-04-06 08:58:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|