blob: 5ebc5e011ba29e260d123756ab70793add43a00c [file] [log] [blame]
# Test that a missing SuggestedFix.End position is correctly
# interpreted as if equal to SuggestedFix.Pos (see issue #64199).
checker -noend -fix example.com/a
exit 0
-- go.mod --
module example.com
go 1.22
-- a/a.go --
package a
func f() {}
-- want/a/a.go --
package a
/*hello*/
func f() {}