aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0083_struct_items.rs
blob: 693e3f3ee1245864d423b68dae606b0fb9c923e5 (plain)
1
2
3
4
5
6
7
8
struct Foo;
struct Foo {}
struct Foo();
struct Foo(String, usize);
struct Foo {
    a: i32,
    b: f32,
}