mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
add missing files with inline tests
This commit is contained in:
parent
100968b689
commit
ecbfe68bf4
2 changed files with 13 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
struct Foo;
|
||||
struct Foo {}
|
||||
struct Foo();
|
||||
struct Foo(String, usize);
|
||||
struct Foo {
|
||||
a: i32,
|
||||
b: f32,
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
union Foo {}
|
||||
union Foo {
|
||||
a: i32,
|
||||
b: f32,
|
||||
}
|
Loading…
Reference in a new issue