mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-04 02:38:50 +00:00
1ec3315873
Include references to the proto, fmt, and math packages, consistent with the ones in the previous generator: // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf Sort imports with ast.SortImports to ensure gofmt-compatible output. Copy the protoc-gen-go/testdata/imports test files from github.com/golang/protobuf. Change-Id: I263e2ac750d03596ae9cb23609049d5ef1016205 Reviewed-on: https://go-review.googlesource.com/135361 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
9 lines
290 B
Protocol Buffer
9 lines
290 B
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 = "proto3";
|
|
package fmt;
|
|
option go_package = "github.com/golang/protobuf/protoc-gen-go/testdata/imports/fmt";
|
|
message M {}
|