aboutsummaryrefslogtreecommitdiffstats
path: root/Software/External Repositories/Protobuf/protobuf-c-master/t/test-optimized.proto
diff options
context:
space:
mode:
Diffstat (limited to 'Software/External Repositories/Protobuf/protobuf-c-master/t/test-optimized.proto')
-rw-r--r--Software/External Repositories/Protobuf/protobuf-c-master/t/test-optimized.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/External Repositories/Protobuf/protobuf-c-master/t/test-optimized.proto b/Software/External Repositories/Protobuf/protobuf-c-master/t/test-optimized.proto
new file mode 100644
index 000000000..d12688155
--- /dev/null
+++ b/Software/External Repositories/Protobuf/protobuf-c-master/t/test-optimized.proto
@@ -0,0 +1,13 @@
+package foo;
+
+option optimize_for = CODE_SIZE;
+
+enum TestEnumLite {
+ LITE = 0;
+ LITE1 = 1;
+}
+
+message TestMessLite {
+ required int32 field1 = 1;
+ required TestEnumLite field2 = 2;
+}