Commit a432e09b authored by Rob Pike's avatar Rob Pike

Add nil test, with bug

SVN=122644
parent 343f5aa7
......@@ -26,6 +26,10 @@ BUG: known to succeed incorrectly
=========== ./literal.go
=========== ./nil.go
nil.go:30: fatal error: naddr: const <T>{<i><int32>INT32;}
BUG: known to fail incorrectly
=========== ./sieve.go
sieve.go:8: fatal error: walktype: switch 1 unknown op SEND l(8)
BUG: known to fail incorrectly
......
// $G $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
}
type IN interface {
}
func main() {
var i *int;
var f *float;
var s *string;
var m *map[float] *int;
var c *chan int;
var t *T;
var in IN;
var ta *[]T;
i = nil;
f = nil;
s = nil;
m = nil;
c = nil;
t = nil;
i = nil;
ta = new([1]T);
ta[0] = nil; //BUG (see bugs/bug045.go)
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment