go/test/fixedbugs/bug069.go

21 lines
414 B
Go
Raw Normal View History

2008-07-15 17:27:05 +00:00
// $G $D/$F.go
// 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
func main(){
2009-01-06 23:19:02 +00:00
c := make(chan int);
2008-07-15 17:27:05 +00:00
ok := false;
var i int;
2008-07-15 17:27:05 +00:00
2008-07-17 18:15:11 +00:00
i, ok = <-c; // works
_, _ = i, ok;
2008-07-15 17:27:05 +00:00
2009-01-06 23:19:02 +00:00
ca := new([2]chan int);
2008-07-17 18:15:11 +00:00
i, ok = <-(ca[0]); // fails: c.go:11: bad shape across assignment - cr=1 cl=2
_, _ = i, ok;
2008-07-15 17:27:05 +00:00
}