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