URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.test/] [test/] [fixedbugs/] [bug277.go] - Rev 700
Compare with Previous | Blame | View Log
// $G $D/$F.go || echo BUG should compile// Copyright 2010 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.// Test cases for conversion syntax.package maintype (A [3]intS struct {x int}P *SF func(x int) intI interface {m(x int) int}L []intM map[string]intC chan int)func (s S) m(x int) int { return x }var (a A = [...]int{1, 2, 3}s S = struct{ x int }{0}p P = &sf F = func(x int) int { return x }i I = sl L = []int{}m M = map[string]int{"foo": 0}c C = make(chan int))func main() {a = A(a)a = [3]int(a)s = struct {x int}(s)p = (*S)(p)f = func(x int) int(f)i = (interface {m(x int) int})(s) // this is accepted by 6gi = interface {m(x int) int}(s) // this is not accepted by 6g (but should be)l = []int(l)m = map[string]int(m)c = chan int(c)_ = chan<- int(c)_ = <-(chan int)(c)_ = <-(<-chan int)(c)}/*6g bug277.gobug277.go:46: syntax error: unexpected (, expecting {bug277.go:50: syntax error: unexpected interfacebug277.go:53: non-declaration statement outside function bodybug277.go:54: non-declaration statement outside function bodybug277.go:55: syntax error: unexpected LCHANbug277.go:56: syntax error: unexpected LCHANbug277.go:57: non-declaration statement outside function bodybug277.go:58: non-declaration statement outside function bodybug277.go:59: syntax error: unexpected }*/
