mirror of
https://github.com/golang/go
synced 2024-11-18 04:44:46 -07:00
05390a0793
The build tags are necessary to keep "go build" in that directory building only stdio.go, but we have to arrange for test/run.go to treat them as satisfied. Fixes #12625. Change-Id: Iec0cb2fdc2c9b24a4e0530be25e940aa0cc9552e Reviewed-on: https://go-review.googlesource.com/17454 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
16 lines
290 B
Go
16 lines
290 B
Go
// cmpout
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build test_run
|
|
|
|
package main
|
|
|
|
import "../stdio"
|
|
|
|
func main() {
|
|
stdio.Stdout.WriteString(stdio.Greeting + "\n")
|
|
}
|