aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/build_dash_o_dev_null.txt
blob: e415fc224dc1261f2ab5aa5450c08e01cb4a1862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Issue #25579

[short] skip

go build -o $devnull hello.go
! exists 'hello'$GOEXE

-- hello.go --
package main

func main() {
	println("hello, world")
}