go/test/linkx.go
Russ Cox 69f0d4c6be cmd/link: detect -X setting non-string variable
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>
2015-06-29 20:28:36 +00:00

24 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)
}