honnef.co/go/tools@v0.5.0-0.dev.0.20240520180541-dcae280a5e87/staticcheck/sa4032/testdata/src/example.com/CheckGOOSComparison/other.go (about)

     1  //go:build !(linux || windows || unix)
     2  
     3  package pkg
     4  
     5  import "runtime"
     6  
     7  func other() {
     8  	if runtime.GOOS == "linux" { //@ diag(`runtime.GOOS will never equal "linux"`)
     9  	}
    10  }