mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
8 lines
106 B
Rust
8 lines
106 B
Rust
struct Foo;
|
|
struct Foo {}
|
|
struct Foo();
|
|
struct Foo(String, usize);
|
|
struct Foo {
|
|
a: i32,
|
|
b: f32,
|
|
}
|