blob: 9b72b1cb02b1fcc19946b94f79649abdbbfd4f01 [file] [log] [blame]
// Test that blank imports in package main are not flagged.
// OK
// Binary foo ...
package main
import _ "fmt"
import (
"os"
_ "path"
)