github.com/jmigpin/editor@v1.6.0/core/godebug/testdata/src22_directives.txt (about) 1 ucmd godebugtester run 2 fail contains stdout "recv: 1" 3 fail contains stdout "recv: \"f1\"" 4 5 -- go.mod -- 6 module mod1 7 -- main.go -- 8 package main 9 func main() { 10 f1(1) 11 } 12 // some comment that is disabling annotateoff 13 // some comment that is disabling annotateoff 14 //godebug:annotateoff 15 func f1(v int)string{ 16 return "f1" 17 } 18 19