rust-analyzer/crates/libsyntax2/tests/data/parser/inline/0109_struct_items.rs
2018-09-14 23:33:29 +02:00

8 lines
106 B
Rust

struct Foo;
struct Foo {}
struct Foo();
struct Foo(String, usize);
struct Foo {
a: i32,
b: f32,
}