Russ Cox | e375543 | 2012-02-07 16:46:33 -0500 | [diff] [blame] | 1 | // $G $D/$F.go && $L -X main.tbd hello $F.$A && ./$A.out |
| 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 | |
Rob Pike | 501f0b5 | 2012-02-23 18:47:26 +1100 | [diff] [blame] | 7 | // Test the -X facility of the gc linker (6l etc.). |
| 8 | |
Russ Cox | e375543 | 2012-02-07 16:46:33 -0500 | [diff] [blame] | 9 | package main |
| 10 | |
| 11 | var tbd string |
| 12 | |
| 13 | func main() { |
| 14 | if tbd != "hello" { |
| 15 | println("BUG: test/linkx", len(tbd), tbd) |
| 16 | } |
| 17 | } |