godebugtester run -work main.go
fail contains stdout "true=(0 < 2)"
contains stdout "3=(0 + 3)"

-- main.go --
package main
func main() {
	//godebug:annotateoff
	for i:=0; i<2; i++{
		//godebug:annotateblock
		_=i+3
	}
}