github.com/amarpal/go-tools@v0.0.0-20240422043104-40142f59f616/staticcheck/sa4032/testdata/src/example.com/CheckGOOSComparison/unknown.go (about)

     1  //go:build unix || windows
     2  
     3  package pkg
     4  
     5  import "runtime"
     6  
     7  func unknown() {
     8  	// don't flag this, we don't know what DomOS is.
     9  	if runtime.GOOS == "DomOS" {
    10  	}
    11  }