[Yunq] Rust tests for nested messages.

This commit is contained in:
Drew Galbraith 2024-08-29 23:39:30 -07:00
parent f94f56f9ec
commit 72e5d8c618
3 changed files with 56 additions and 3 deletions

View file

@ -13,3 +13,15 @@ message Cap {
message Repeated {
repeated u64 unsigned_ints;
}
message Nested {
Basic basic;
Cap cap1;
Cap cap2;
}
message RepeatedNested {
repeated Basic basics;
repeated Cap caps;
}