github.com/jmigpin/editor@v1.6.0/core/godebug/testdata/src05_loop.txt (about)

     1  ucmd godebugtester run -work main.go
     2  fail contains stdout "true=(0 < 2)"
     3  contains stdout "3=(0 + 3)"
     4  
     5  -- main.go --
     6  package main
     7  func main() {
     8  	//godebug:annotateoff
     9  	for i:=0; i<2; i++{
    10  		//godebug:annotateblock
    11  		_=i+3
    12  	}
    13  }