From 489231111f2ef097e99b150232cc0c5323c9729e Mon Sep 17 00:00:00 2001 From: Rob Findley Date: Wed, 10 Mar 2021 11:30:24 -0500 Subject: [PATCH] go/types: add missing build tag to api_go1.18_test.go This file has a go:build comment without a corresponding +build comment. Change-Id: Id01604242a14d8ead16ffb9aa1b45eef7706956a Reviewed-on: https://go-review.googlesource.com/c/go/+/300450 Trust: Robert Findley Run-TryBot: Robert Findley TryBot-Result: Go Bot Reviewed-by: Robert Griesemer --- src/go/types/api_go1.18_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/go/types/api_go1.18_test.go b/src/go/types/api_go1.18_test.go index bbbf70581d..e60fe23201 100644 --- a/src/go/types/api_go1.18_test.go +++ b/src/go/types/api_go1.18_test.go @@ -3,6 +3,7 @@ // license that can be found in the LICENSE file. //go:build go1.18 +// +build go1.18 package types_test -- 2.50.0