From 7c67612b8a894187fa3b64725531a5459f9211bf Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 10 Aug 2018 22:33:29 +0300 Subject: organizize --- crates/libsyntax2/tests/data/parser/inline/0061_struct_lit.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 crates/libsyntax2/tests/data/parser/inline/0061_struct_lit.rs (limited to 'crates/libsyntax2/tests/data/parser/inline/0061_struct_lit.rs') diff --git a/crates/libsyntax2/tests/data/parser/inline/0061_struct_lit.rs b/crates/libsyntax2/tests/data/parser/inline/0061_struct_lit.rs new file mode 100644 index 000000000..eb711f68a --- /dev/null +++ b/crates/libsyntax2/tests/data/parser/inline/0061_struct_lit.rs @@ -0,0 +1,5 @@ +fn foo() { + S {}; + S { x, y: 32, }; + S { x, y: 32, ..Default::default() }; +} -- cgit v1.2.3