go/test/nil.go
Russ Cox f48cbfdf56 convert tests; nothing interesting.
R=r
OCL=23012
CL=23014
2009-01-16 16:12:14 -08:00

35 lines
518 B
Go

// $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
export type T struct {
i int
}
export 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 []IN;
i = nil;
f = nil;
s = nil;
m = nil;
c = nil;
t = nil;
i = nil;
ta = make([]IN, 1);
ta[0] = nil;
}