| 1 | package E1 |
|---|---|
| 2 | |
| 3 | import ( |
| 4 | "fmt" |
| 5 | "log" |
| 6 | "os" |
| 7 | ) |
| 8 | |
| 9 | func example() { |
| 10 | fmt.Fprintf(os.Stderr, "warning: %v", "oops") // match |
| 11 | } |
| 12 |
Members
| 1 | package E1 |
|---|---|
| 2 | |
| 3 | import ( |
| 4 | "fmt" |
| 5 | "log" |
| 6 | "os" |
| 7 | ) |
| 8 | |
| 9 | func example() { |
| 10 | fmt.Fprintf(os.Stderr, "warning: %v", "oops") // match |
| 11 | } |
| 12 |