9 lines
106 B
Rust
9 lines
106 B
Rust
|
|
struct Foo;
|
||
|
|
struct Foo {}
|
||
|
|
struct Foo();
|
||
|
|
struct Foo(String, usize);
|
||
|
|
struct Foo {
|
||
|
|
a: i32,
|
||
|
|
b: f32,
|
||
|
|
}
|