mirror of
https://github.com/golang/go
synced 2024-11-02 08:01:26 +00:00
69f0d4c6be
Fixes #9621. Change-Id: Ib9c6001378364af899f57fd4b89fb23af2042923 Reviewed-on: https://go-review.googlesource.com/11694 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Russ Cox <rsc@golang.org>
23 lines
414 B
Go
23 lines
414 B
Go
// skip
|
|
|
|
// Copyright 2012 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.
|
|
|
|
// Test the -X facility of the gc linker (6l etc.).
|
|
// This test is run by linkx_run.go.
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
var tbd string
|
|
var overwrite string = "dibs"
|
|
|
|
var b bool
|
|
var x int
|
|
|
|
func main() {
|
|
fmt.Println(tbd)
|
|
fmt.Println(overwrite)
|
|
}
|