summaryrefslogtreecommitdiffstats
path: root/test/fixedbugs/bug160.dir/y.go
blob: 428808dd19879a0a56ce39b90a60363a19c914f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 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.

package main

import "os"
import "./x"

func main() {
	if x.Zero != 0 {
		println("x.Zero = ", x.Zero);
		os.Exit(1);
	}
	if x.Ten != 10 {
		println("x.Ten = ", x.Ten);
		os.Exit(1);
	}
}