2014-11-06 13:14:08 -07:00
|
|
|
// skip
|
2012-09-23 11:16:14 -06:00
|
|
|
|
2012-02-07 14:46:33 -07:00
|
|
|
// 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.
|
|
|
|
|
2012-02-23 00:47:26 -07:00
|
|
|
// Test the -X facility of the gc linker (6l etc.).
|
2014-11-06 13:14:08 -07:00
|
|
|
// This test is run by linkx_run.go.
|
2012-02-23 00:47:26 -07:00
|
|
|
|
2012-02-07 14:46:33 -07:00
|
|
|
package main
|
|
|
|
|
2015-05-21 12:35:02 -06:00
|
|
|
import "fmt"
|
|
|
|
|
2012-02-07 14:46:33 -07:00
|
|
|
var tbd string
|
2014-09-15 19:16:45 -06:00
|
|
|
var overwrite string = "dibs"
|
2012-02-07 14:46:33 -07:00
|
|
|
|
2015-06-29 11:03:11 -06:00
|
|
|
var b bool
|
|
|
|
var x int
|
|
|
|
|
2012-02-07 14:46:33 -07:00
|
|
|
func main() {
|
2015-05-21 12:35:02 -06:00
|
|
|
fmt.Println(tbd)
|
|
|
|
fmt.Println(overwrite)
|
2012-02-07 14:46:33 -07:00
|
|
|
}
|