URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.test/] [test/] [fixedbugs/] [bug393.go] - Rev 700
Compare with Previous | Blame | View Log
// $G $D/$F.go || echo BUG: bug393// Copyright 2012 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.// issue 2672// was trying binary search with an interface typepackage mainfunc f(x interface{}) int {switch x {case 1:return 1case 2:return 2case 3:return 3case 4:return 4case "5":return 5case "6":return 6default:return 7}panic("switch")}
