Source file test/fixedbugs/issue63489b.go

     1  // errorcheck -lang=go1.4
     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  

View as plain text