go/test/fixedbugs/bug143.go
David Symonds 2f8a2dc193 Extend fixedbugs/bug143.go with function return values,
as a regression test for the fix made in s2/27706.

R=r
APPROVED=r
DELTA=14  (13 added, 0 deleted, 1 changed)
OCL=27707
CL=27709
2009-04-21 20:26:26 -07:00

44 lines
639 B
Go

// $G $D/$F.go || echo BUG should compile
// 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
type myMap map[string] int;
func f() *myMap {
m := make(map[string] int);
return &m
}
func main() {
m := make(myMap);
mp := &m;
{
x, ok := m["key"]
}
{
x, ok := (*mp)["key"]
}
{
x, ok := mp["key"]
}
{
x, ok := f()["key"]
}
{
var x int;
var ok bool;
x, ok = f()["key"]
}
}
/*
* bug143.go:19: assignment count mismatch: 2 = 1
* bug143.go:18: x: undefined
* bug143.go:18: ok: undefined
*/