1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:20:16 -06:00
go/test/fixedbugs/bug143.go
Russ Cox 4c5c0f437f update tests for CL 30586.
won't submit unless 30586 goes in.

R=r
DELTA=94  (65 added, 16 deleted, 13 changed)
OCL=30592
CL=30755
2009-06-25 14:44:09 -07:00

41 lines
610 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 := 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
*/