Source file test/fixedbugs/issue63489a.go

     1  // errorcheck -lang=go1.21
     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  //go:build go1.4
     8  
     9  package p
    10  
    11  const c = 0o123 // ERROR "file declares //go:build go1.4"
    12  
    13  // ERROR "file declares //go:build go1.4"
    14  
    15  //line issue63489a.go:13:1
    16  const d = 0o124
    17  

View as plain text