blob: e96d47248bb8f2067bacb6487931c4ed2e56da06 [file] [log] [blame]
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
syntax = "proto2";
package oneoftest;
message Foo {
oneof bar { // must be generated as Bar field in Foo struct
string get_bar = 1;
}
}