blob: 01899c9ad645f2994c08090a7fad4f19c40068ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// compile-flags: -Ztrait-solver=next
// check-pass
#[derive(Default)]
struct Foo {
x: i32,
}
fn main() {
let mut xs = <[Foo; 1]>::default();
xs[0].x = 1;
(&mut xs[0]).x = 2;
}
|