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
|
|
|
|
|
|
|
|
var tbd string
|
2014-09-15 19:16:45 -06:00
|
|
|
var overwrite string = "dibs"
|
2012-02-07 14:46:33 -07:00
|
|
|
|
|
|
|
func main() {
|
2014-11-06 13:14:08 -07:00
|
|
|
println(tbd)
|
|
|
|
println(overwrite)
|
2012-02-07 14:46:33 -07:00
|
|
|
}
|