go/test/fixedbugs/issue4326.dir/z.go
Russ Cox 8850d14fe9 test/run: handle compiledir and errorcheckdir with multi-file packages
Multiple files with the same package all get compiled together.

R=golang-dev, iant, dave
CC=golang-dev
https://golang.org/cl/7005053
2013-01-02 15:31:49 -05:00

8 lines
84 B
Go

package z
import "./p2"
func main() {
p2.NewO().RemoveOption("hello", "world")
}