go html 源码

2022-07-15 浏览 (1018)

golang html 代码

文件路径:/src/cmd/cover/testdata/html/html.go

package html

import "fmt"

/ This file is tested by html_test.go.
/ The comments below are markers for extracting the annotated source
/ from the HTML output.

/ This is a regression test for incorrect sorting of boundaries
/ that coincide, specifically for empty select clauses.
/ START f
func f() {
	ch := make(chan int)
	select {
	case <-ch:
	default:
	}
}

/ END f

/ https://golang.org/issue/25767
/ START g
func g() {
	if false {
		fmt.Printf("Hello")
	}
}

/ END g

相关信息

go 源码目录

相关文章

go html_test 源码

^