2014-04-02 10:24:55 -06:00
|
|
|
// +build ignore
|
|
|
|
|
|
|
|
package E1
|
|
|
|
|
|
|
|
import (
|
2015-03-02 12:23:59 -07:00
|
|
|
"fmt"
|
2014-04-02 10:24:55 -06:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
func example() {
|
2015-03-02 12:23:59 -07:00
|
|
|
fmt.Fprintf(os.Stderr, "warning: %v", "oops") // match
|
2014-04-02 10:24:55 -06:00
|
|
|
}
|