xref: /aosp_15_r20/external/flatbuffers/tests/flatc/foo.fbs (revision 890232f25432b36107d06881e0a25aaa6b473652)
1include "bar/bar.fbs";
2include "bar/bar_with_ns.fbs";
3
4table Foo {
5  bar:Bar;
6  bar2:bar.Bar;
7}
8
9root_type Foo;