1syntax = "proto3"; 2 3import "other.proto"; 4 5message FirstOneof {} 6 7message Bar { 8 oneof content { 9 FirstOneof first = 1; 10 SecondOneof second = 2; 11 } 12} 13 14message Foo { 15 Bar bar = 1; 16} 17 18 19