From b6429768c65eed9f0c16faba3ceeb21ea112a951 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 25 Sep 2008 15:45:19 -0700 Subject: [PATCH] bug: package identifier not visible (should be in the scope chain like any other identifier) R=r DELTA=16 (16 added, 0 deleted, 0 changed) OCL=15884 CL=15884 --- test/bugs/bug105.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/bugs/bug105.go diff --git a/test/bugs/bug105.go b/test/bugs/bug105.go new file mode 100644 index 0000000000..bbafc039fa --- /dev/null +++ b/test/bugs/bug105.go @@ -0,0 +1,20 @@ +// 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. + +// $G $D/$F.go || echo BUG: should compile + +package P + +var x int + +func f() int { + return P.x // P should be visible +} + +/* +uetli:~/Source/go1/test/bugs gri$ 6g bug105.go +bug105.go:8: P: undefined +bug105.go:9: illegal types for operand: RETURN + (INT32) +*/ -- 2.48.1