aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-08-23 13:55:21 +0100
committerAleksey Kladov <[email protected]>2019-08-23 14:59:50 +0100
commit5b18a4eef9e69260ce2f105b33553c929cb7d827 (patch)
tree15f55b3eab48c3d0bbb1975fbd4db7cbb56d3e3e /crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs
parentc12dce0073c1766f7d2b10a69f8526a8093e70dc (diff)
rename struct -> record, pos -> tuple
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs b/crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs
deleted file mode 100644
index 6285e5549..000000000
--- a/crates/ra_syntax/test_data/parser/inline/ok/0061_struct_lit.rs
+++ /dev/null
@@ -1,6 +0,0 @@
1fn foo() {
2 S {};
3 S { x, y: 32, };
4 S { x, y: 32, ..Default::default() };
5 TupleStruct { 0: 1 };
6}