Sign in
pigweed
/
third_party
/
github
/
nanopb
/
nanopb
/
404b2f072d46d53c12b87818b86b34ebb6ad1184
/
.
/
tests
/
enum_mapping
/
enum_mapping.proto
blob: 0e26096e097468639c5d5d10af7fdbccf334c64f [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
enum
TestEnum1
{
A
=
0
;
B
=
2
;
C
=
-
3
;
}
enum
TestEnum2
{
X
=
0
;
Y
=
5
;
}
message
TestMsg
{
TestEnum1
test1
=
1
;
oneof oneof1
{
TestEnum2
test2
=
2
;
}
}