* lto.c (do_stream_out): Add PART parameter; open dump file.
[official-gcc.git] / gcc / testsuite / go.go-torture / execute / string-1.go
blobf999d87525b11e646fd6a3a4b5584951b0173e1c
1 package main
3 func fn(s string) int {
4 if s[0] != 'a' || s[1] != 'b' || s[2] != 'c' {
5 panic(0);
7 return len(s);
10 func main() {
11 s := "abc";
12 if fn(s) != 3 {
13 panic(1);