mirror of
https://github.com/golang/go
synced 2024-11-19 02:34:44 -07:00
bfcffc697d
See refactor/eg/eg.go for details. LGTM=crawshaw R=crawshaw, gri, kamil.kisiel, josharian CC=golang-codereviews https://golang.org/cl/81010043
14 lines
137 B
Plaintext
14 lines
137 B
Plaintext
// +build ignore
|
|
|
|
package E1
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"fmt"
|
|
)
|
|
|
|
func example() {
|
|
fmt.Fprintf(os.Stderr, "warning: %v", "oops") // match
|
|
}
|