9 lines
121 B
Rust
9 lines
121 B
Rust
// error-pattern:expected `int` but found `bool`
|
|
|
|
fn main() {
|
|
|
|
let a = {foo: 0i};
|
|
|
|
let b = {foo: true with a};
|
|
}
|