rust/src/test/compile-fail/rec-extend.rs

10 lines
138 B
Rust
Raw Normal View History

// xfail-stage0
// error-pattern:expected int but found bool
fn main() {
auto a = rec(foo = 0);
auto b = rec(foo = true with a);
}