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}