10 lines
262 B
Go
10 lines
262 B
Go
//golangcitest:args -Eforbidigo
|
|
//golangcitest:config_path testdata/configs/forbidigo_include_godoc_examples.yml
|
|
package testdata
|
|
|
|
import "fmt"
|
|
|
|
func ExampleForbidigoNoGodoc() {
|
|
fmt.Printf("too noisy!!!") // ERROR "use of `fmt.Printf` forbidden by pattern.*"
|
|
}
|