-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
2,106 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
syntax = "proto3"; | ||
package goproto.proto.test3; | ||
|
||
option go_package = "github.com/cosmos/cosmos-proto/internal/testprotos/test3"; | ||
|
||
message MultiLayeredNesting { | ||
message Nested1 { | ||
message Nested2 { | ||
message Nested3 { | ||
oneof nested3_oneof { | ||
string nested_3_string = 1; | ||
int32 nested_3_int32 = 2; | ||
} | ||
} | ||
Nested3 nested_3 = 1; | ||
} | ||
} | ||
Nested1 nested1 = 1; | ||
} |
Oops, something went wrong.