aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/ok/0043_complex_assignment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/ok/0043_complex_assignment.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/ok/0043_complex_assignment.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/ra_syntax/tests/data/parser/ok/0043_complex_assignment.rs b/crates/ra_syntax/tests/data/parser/ok/0043_complex_assignment.rs
deleted file mode 100644
index 7e4a28bf7..000000000
--- a/crates/ra_syntax/tests/data/parser/ok/0043_complex_assignment.rs
+++ /dev/null
@@ -1,8 +0,0 @@
1// https://github.com/rust-analyzer/rust-analyzer/issues/674
2
3struct Repr { raw: [u8; 1] }
4
5fn abc() {
6 Repr { raw: [0] }.raw[0] = 0;
7 Repr{raw:[0]}();
8}