Add tests for flatc (#7405)

This commit is contained in:
Derek Bailey
2022-08-06 21:11:03 -07:00
committed by GitHub
parent 9a5ff89003
commit 47c757f714
6 changed files with 256 additions and 0 deletions

5
tests/flatc/bar/bar.fbs Normal file
View File

@@ -0,0 +1,5 @@
include "baz/baz.fbs";
table Bar {
baz:Baz;
}

View File

@@ -0,0 +1,3 @@
table Baz {
a:int;
}