aboutsummaryrefslogtreecommitdiff
path: root/protoc-gen-go/testdata/issue780_oneof_conflict/test.proto
blob: 07879c953e6d2863f17e49589b925ea231a50660 (plain)
1
2
3
4
5
6
7
8
9
syntax = "proto2";

package oneoftest;

message Foo {
	oneof bar {
		string get_bar = 1;
	}
}