Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/test_data/parser/inline/ok/0083_struct_items.rs')
-rw-r--r--crates/syntax/test_data/parser/inline/ok/0083_struct_items.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/syntax/test_data/parser/inline/ok/0083_struct_items.rs b/crates/syntax/test_data/parser/inline/ok/0083_struct_items.rs
deleted file mode 100644
index 693e3f3ee1..0000000000
--- a/crates/syntax/test_data/parser/inline/ok/0083_struct_items.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-struct Foo;
-struct Foo {}
-struct Foo();
-struct Foo(String, usize);
-struct Foo {
- a: i32,
- b: f32,
-}