2011-12-28 15:41:31 -06:00
|
|
|
// error-pattern:expected `int` but found `bool`
|
2011-07-06 15:36:27 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let a = {foo: 0};
|
2011-07-06 15:36:27 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let b = {foo: true with a};
|
2011-08-19 17:16:48 -05:00
|
|
|
}
|