Sign in
go
/
tools
/
c924e603b56b35e41529f44881503e25c6497e4d
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
invertifcondition
/
greater_than.go
blob: 41b7e357950660176ebb1ee3a6f7c46094d4548b [
file
] [
log
] [
blame
]
package invertifcondition
import (
"fmt"
"os"
)
func GreaterThan() {
if len(os.Args) > 2 {
//@suggestedfix("i", "refactor.rewrite", "")
fmt.Println("A")
} else {
fmt.Println("B")
}
}