mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
195 B
Rust
14 lines
195 B
Rust
// 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;
|
|
}
|