Files
rust/crates/libsyntax2/tests/data/parser/inline/0109_struct_items.rs

9 lines
106 B
Rust
Raw Normal View History

2018-09-14 23:32:24 +02:00
struct Foo;
struct Foo {}
struct Foo();
struct Foo(String, usize);
struct Foo {
a: i32,
b: f32,
}