diff --git a/bad.proto b/bad.proto new file mode 100644 index 0000000..018dc34 --- /dev/null +++ b/bad.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; + +package exampletest; + +message user_info { + string full_name = 1; + int32 age_years = 2; +} + +enum status { + UNKNOWN = 0; + ACTIVE = 1; + INACTIVE = 2; +} +