1
0
mirror of https://github.com/golang/go synced 2024-09-24 17:10:13 -06:00
go/test/fixedbugs/bug066.go

27 lines
385 B
Go
Raw Normal View History

// compile
2008-07-14 17:26:41 -06:00
// 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 bug066
2008-07-14 17:26:41 -06:00
2009-01-20 15:40:40 -07:00
type Scope struct {
entries map[string] *Object;
2008-07-14 17:26:41 -06:00
}
2009-01-20 15:40:40 -07:00
type Type struct {
2008-07-14 17:26:41 -06:00
scope *Scope;
}
2009-01-20 15:40:40 -07:00
type Object struct {
2008-07-14 17:26:41 -06:00
typ *Type;
}
2009-01-20 15:40:40 -07:00
func Lookup(scope *Scope) *Object {
2008-07-14 17:26:41 -06:00
return scope.entries["foo"];
}