go/test/fixedbugs/bug045.go
Rob Pike 25444d079f clean up some tests
R=rsc
DELTA=10  (1 added, 2 deleted, 7 changed)
OCL=22033
CL=22033
2009-01-05 13:09:34 -08:00

22 lines
394 B
Go

// $G $D/$F.go && $L $F.$A && ./$A.out
// 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
type T struct {
i int
}
func main() {
var ta []*T;
ta = *new(*[1]*T); // TODO: the first * shouldn't be necessary
ta[0] = nil;
}
/*
bug045.go:13: fatal error: goc: exit 1
*/