]> Cypherpunks.ru repositories - gostls13.git/blob - test/linkx.go
[dev.cc] all: merge dev.power64 (f57928630b36) into dev.cc
[gostls13.git] / test / linkx.go
1 // skip
2
3 // Copyright 2012 The Go Authors.  All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 // Test the -X facility of the gc linker (6l etc.).
8 // This test is run by linkx_run.go.
9
10 package main
11
12 var tbd string
13 var overwrite string = "dibs"
14
15 func main() {
16         println(tbd)
17         println(overwrite)
18 }