Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ERRORNEXT (0.33 sec)

  1. src/cmd/vet/testdata/buildtag/buildtag2.go

    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    // ERRORNEXT "possible malformed [+]build comment"
    // +builder
    // +build !ignore
    
    package testdata
    
    // ERRORNEXT "misplaced \+build comment"
    // +build toolate
    // ERRORNEXT "misplaced //go:build comment"
    //go:build toolate
    
    var _ = 3
    
    var _ = `
    // +build notacomment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 483 bytes
    - Viewed (0)
  2. src/cmd/vet/testdata/buildtag/buildtag.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    // ERRORNEXT "possible malformed [+]build comment"
    // +builder
    // +build !ignore
    
    package testdata
    
    // ERRORNEXT "misplaced \+build comment"
    // +build toolate
    
    var _ = 3
    
    var _ = `
    // +build notacomment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 420 bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/directive/directive.go

    package p
    
    // ERRORNEXT "//go:debug directive only valid in package main or test"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 19:25:52 UTC 2023
    - 104 bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/buildtag/buildtag3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    //go:build good
    // ERRORNEXT "[+]build lines do not match //go:build condition"
    // +build bad
    
    package testdata
    
    var _ = `
    // +build notacomment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 362 bytes
    - Viewed (0)
Back to top