2014-11-06 15:14:08 -05:00
|
|
|
// skip
|
2012-09-23 13:16:14 -04:00
|
|
|
|
2012-02-07 16:46:33 -05: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 18:47:26 +11:00
|
|
|
// Test the -X facility of the gc linker (6l etc.).
|
2014-11-06 15:14:08 -05:00
|
|
|
// This test is run by linkx_run.go.
|
2012-02-23 18:47:26 +11:00
|
|
|
|
2012-02-07 16:46:33 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
var tbd string
|
2014-09-15 18:16:45 -07:00
|
|
|
var overwrite string = "dibs"
|
2012-02-07 16:46:33 -05:00
|
|
|
|
|
|
|
|
func main() {
|
2014-11-06 15:14:08 -05:00
|
|
|
println(tbd)
|
|
|
|
|
println(overwrite)
|
2012-02-07 16:46:33 -05:00
|
|
|
}
|