mirror of
https://github.com/golang/go
synced 2025-04-18 00:56:09 +00:00
This reverts commit CL 604935. Reason for revert: The team has decided that this change will be added to a point release. Change-Id: I1c1032b881c3a98312a4753b9767cb7c8eed9e09 Reviewed-on: https://go-review.googlesource.com/c/go/+/605096 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Michael Matloob <matloob@golang.org>
17 lines
362 B
Go
17 lines
362 B
Go
// errorcheck -lang=go1.21
|
|
|
|
// Copyright 2023 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.
|
|
|
|
//go:build go1.4
|
|
|
|
package p
|
|
|
|
const c = 0o123 // ERROR "file declares //go:build go1.4"
|
|
|
|
// ERROR "file declares //go:build go1.4"
|
|
|
|
//line issue63489a.go:13:1
|
|
const d = 0o124
|