Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit b6b1194

Browse files
committed
Add new tests
1 parent 3db9d1f commit b6b1194

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
syntax = "proto3";
2+
3+
package encoding_decoding;
4+
5+
message Overflow32 {
6+
uint32 uint = 1;
7+
int32 int = 2;
8+
sint32 sint = 3;
9+
}
10+
11+
message Overflow64 {
12+
uint64 uint = 1;
13+
int64 int = 2;
14+
sint64 sint = 3;
15+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
syntax = "proto3";
2+
3+
package manual_validation;
4+
5+
message Msg {
6+
uint32 x = 1;
7+
}

0 commit comments

Comments
 (0)