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