Sign in
go
/
tools
/
c924e603b56b35e41529f44881503e25c6497e4d
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
invertifcondition
/
semicolon.go
blob: a23589374fd865e1fae4133e57b4940b7c77062a [
file
] [
log
] [
blame
]
package invertifcondition
import (
"fmt"
)
func Semicolon() {
if _, err := fmt.Println("x"); err != nil {
//@suggestedfix("if", "refactor.rewrite", "")
fmt.Println("A")
} else {
fmt.Println("B")
}
}