xref: /aosp_15_r20/external/flatbuffers/tests/flatc/bar/bar_with_ns.fbs (revision 890232f25432b36107d06881e0a25aaa6b473652)
1include "baz/baz_with_ns.fbs";
2include "baz/baz.fbs";
3
4namespace bar;
5
6table Bar {
7  baz:baz.Baz;
8  baz2:Baz;
9  foo:Foo;
10}
11
12table Foo {
13  a:int;
14}