rust/crates/syntax/test_data/parser/ok/0043_complex_assignment.rs

9 lines
160 B
Rust
Raw Normal View History

// https://github.com/rust-analyzer/rust-analyzer/issues/674
struct Repr { raw: [u8; 1] }
fn abc() {
Repr { raw: [0] }.raw[0] = 0;
Repr{raw:[0]}();
}