# comments in the middle of a stmt
godebugtester run main.go
contains stdout "1"

-- main.go --
package main
func main() {
	a:=/*bb*/1
	/*aaa*/
	_=a
}

