mirror of
https://github.com/golang/go
synced 2024-11-19 11:34:49 -07:00
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
|
||
|
}
|