add missing files with inline tests

This commit is contained in:
darksv 2018-09-14 23:32:24 +02:00
parent 100968b689
commit ecbfe68bf4
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,8 @@
struct Foo;
struct Foo {}
struct Foo();
struct Foo(String, usize);
struct Foo {
a: i32,
b: f32,
}

View file

@ -0,0 +1,5 @@
union Foo {}
union Foo {
a: i32,
b: f32,
}