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

     1  fail ucmd godebugtester run main.go
     2  contains error "main.go:6:2: unexpected annotate option: \"\""
     3  
     4  -- main.go --
     5  package main
     6  func main() {
     7  	a:=1
     8  	b:=2
     9  	// has extra ':' at the end in annotation type not expecting it
    10  	//godebug:annotateblock:
    11  	_=a+b
    12  }
    13