Source file src/cmd/vet/testdata/tagtest/file2.go

     1  // Copyright 2015 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build !testtag
     6  // +build !testtag
     7  
     8  package main
     9  
    10  import "fmt"
    11  
    12  func main() {
    13  	fmt.Printf("%s", 0)
    14  }
    15  

View as plain text