syntax = "proto3"; package of2; message M { int32 z = 1; } message Choice2 { oneof payload { M m = 1; bool t = 2; int64 u = 3; } }