2024-08-14 14:04:08 -06:00
|
|
|
// errorcheck -lang=go1.21
|
2023-10-11 19:35:37 -06:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2024-08-14 14:04:08 -06:00
|
|
|
//go:build go1.4
|
2023-10-11 19:35:37 -06:00
|
|
|
|
2024-08-07 11:09:18 -06:00
|
|
|
package p
|
2023-10-11 19:35:37 -06:00
|
|
|
|
2024-08-14 14:04:08 -06:00
|
|
|
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
|