mirror of
https://github.com/golang/go
synced 2024-11-23 02:20:03 -07:00
2693f77b35
This reverts CL 603895 Reason for revert: We've decided to change the logic for how upgrades are done and want to submit the new logic in a self contained CL that can be cherry-picked onto release-branch.go1.23 Change-Id: I366af8e95ce1de7311b0385a23f9dd3df175745a Reviewed-on: https://go-review.googlesource.com/c/go/+/605675 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
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
|