github.com/serversong/goreporter@v0.0.0-20200325104552-3cfaf44fd178/linters/golint/testdata/blank-import-main.go (about)

     1  // Test that blank imports in package main are not flagged.
     2  // OK
     3  
     4  // Binary foo ...
     5  package main
     6  
     7  import _ "fmt"
     8  
     9  import (
    10  	"os"
    11  	_ "path"
    12  )
    13  
    14  var _ os.File // for "os"