blob: d2c9545679b235b3df99554831656539a17c83fd [file] [log] [blame]
Russ Coxe3755432012-02-07 16:46:33 -05001// $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 Pike501f0b52012-02-23 18:47:26 +11007// Test the -X facility of the gc linker (6l etc.).
8
Russ Coxe3755432012-02-07 16:46:33 -05009package main
10
11var tbd string
12
13func main() {
14 if tbd != "hello" {
15 println("BUG: test/linkx", len(tbd), tbd)
16 }
17}