mirror of
https://github.com/golang/go
synced 2024-11-05 11:46:12 -07:00
4744be3abc
Fixes golang/go#10038 Change-Id: If3243f0c68fc0442dcc1e2dd71cbdc629beff70c Reviewed-on: https://go-review.googlesource.com/6481 Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
14 lines
137 B
Plaintext
14 lines
137 B
Plaintext
// +build ignore
|
|
|
|
package E1
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func example() {
|
|
fmt.Fprintf(os.Stderr, "warning: %v", "oops") // match
|
|
}
|