2008-09-12 10:43:21 -06:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG: should not crash
|
|
|
|
|
|
|
|
// 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() {
|
|
|
|
var b [0]byte;
|
2009-04-17 00:07:15 -06:00
|
|
|
s := string(&b); // out of bounds trap
|
2008-09-22 21:12:15 -06:00
|
|
|
if s != "" {
|
|
|
|
panic("bad convert")
|
|
|
|
}
|
2009-03-03 09:39:12 -07:00
|
|
|
var b1 = [5]byte{'h', 'e', 'l', 'l', 'o'};
|
2009-04-17 00:07:15 -06:00
|
|
|
if string(&b1) != "hello" {
|
2008-09-22 21:12:15 -06:00
|
|
|
panic("bad convert 1")
|
|
|
|
}
|
2009-01-06 16:19:02 -07:00
|
|
|
var b2 = make([]byte, 5);
|
2008-09-22 21:12:15 -06:00
|
|
|
for i := 0; i < 5; i++ { b2[i] = b1[i] }
|
|
|
|
if string(b2) != "hello" {
|
|
|
|
panic("bad convert 2")
|
|
|
|
}
|
2008-09-12 10:43:21 -06:00
|
|
|
}
|
|
|
|
|