Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
f5eb468394287299e9590c5591fb0305ef3d6fad
/
.
/
aos
/
flatbuffers
/
test_dir
/
include.fbs
blob: 533db2b6152b76c1014c572960b43a01b0566445 [
file
] [
log
] [
blame
]
James Kuszmaul
f5eb468
2023-09-22 17:16:59 -0700
[
diff
] [
blame^
]
1
namespace
aos
.
fbs
.
testing
.
included
;
2
enum
TestEnum
:
ubyte
{
3
A
=
0
,
4
B
=
1
,
5
}
6
7
table
IncludedTable
{
8
foo
:
TestEnum
(
id
:
0
);
9
}
10
11
root_type
IncludedTable
;
12