about summary refs log tree commit diff
path: root/src/test/compile-fail/rec-extend.rs
blob: 936c76b346ff70ac21dc390521a5b65a9f6fe924 (plain)
1
2
3
4
5
6
7
8
9
// xfail-stage0
// error-pattern:expected int but found bool

fn main() {

  auto a = rec(foo = 0);

  auto b = rec(foo = true with a);
}