URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.go-torture/] [execute/] [string-1.go] - Rev 758
Go to most recent revision | Compare with Previous | Blame | View Log
package main
func fn(s string) int {
if s[0] != 'a' || s[1] != 'b' || s[2] != 'c' {
panic(0);
}
return len(s);
}
func main() {
s := "abc";
if fn(s) != 3 {
panic(1);
}
}
Go to most recent revision | Compare with Previous | Blame | View Log