diff options
Diffstat (limited to '')
-rw-r--r-- | tests/inputs/bytes/bytes.proto | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/inputs/bytes/bytes.proto b/tests/inputs/bytes/bytes.proto new file mode 100644 index 0000000..9895468 --- /dev/null +++ b/tests/inputs/bytes/bytes.proto @@ -0,0 +1,7 @@ +syntax = "proto3"; + +package bytes; + +message Test { + bytes data = 1; +} |