mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-29 18:32:46 +00:00
7e5c64778d
Floating-point defaults of -inf, +inf, and NaN must be generated as vars rather than consts. Fix the forwarding declaration for public imports of these vars. (Was "const", is now "var".) Change-Id: Ic6dc90ab7f88378ba477bff39e047de5f5193c35 Reviewed-on: https://go-review.googlesource.com/c/151757 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
50 lines
1.0 KiB
Protocol Buffer
50 lines
1.0 KiB
Protocol Buffer
// Copyright 2018 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 goproto.protoc.import_public.sub;
|
|
|
|
option go_package = "github.com/golang/protobuf/v2/cmd/protoc-gen-go/testdata/import_public/sub";
|
|
|
|
import "import_public/sub/b.proto";
|
|
|
|
message M {
|
|
// Field using a type in the same Go package, but a different source file.
|
|
optional M2 m2 = 1;
|
|
optional string s = 4 [default="default"];
|
|
optional bytes b = 5 [default="default"];
|
|
optional double f = 6 [default=nan];
|
|
|
|
oneof oneof_field {
|
|
int32 oneof_int32 = 2;
|
|
int64 oneof_int64 = 3;
|
|
}
|
|
|
|
message Submessage {
|
|
enum Submessage_Subenum {
|
|
M_SUBMESSAGE_ZERO = 0;
|
|
}
|
|
|
|
oneof submessage_oneof_field {
|
|
int32 submessage_oneof_int32 = 1;
|
|
int64 submessage_oneof_int64 = 2;
|
|
}
|
|
}
|
|
|
|
enum Subenum {
|
|
M_ZERO = 0;
|
|
}
|
|
|
|
extensions 100 to max;
|
|
}
|
|
|
|
extend M {
|
|
optional string extension_field = 100;
|
|
}
|
|
|
|
enum E {
|
|
ZERO = 0;
|
|
}
|