1// errorcheck -lang=go1.22 2 3// Copyright 2023 The Go Authors. All rights reserved. 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file. 6 7// This file has been changed from its original version as 8// //go:build file versions below 1.21 set the language version to 1.21. 9// The original tested a -lang version of 1.21 with a file version of 10// go1.4 while this new version tests a -lang version of go1.22 11// with a file version of go1.21. 12 13//go:build go1.21 14 15package p 16 17func f() { 18 for _ = range 10 { // ERROR "file declares //go:build go1.21" 19 } 20} 21