2009-02-18 11:07:46 -07:00
|
|
|
// $G $D/$F.go
|
|
|
|
|
|
|
|
// 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 f(interface{})
|
|
|
|
func g() {}
|
|
|
|
func main() {
|
2009-03-03 09:39:12 -07:00
|
|
|
f(map[string]string{"a":"b","c":"d"});
|
2009-09-29 22:21:14 -06:00
|
|
|
f([...]int{1,2,3});
|
|
|
|
f(([...]int){1,2,3});
|
|
|
|
f((map[string]string){"a":"b","c":"d"});
|
|
|
|
f((map[string]func()){"a":g,"c":g});
|
2009-02-18 11:07:46 -07:00
|
|
|
f(make(chan(<-chan int)));
|
|
|
|
f(make(chan<-(chan int)));
|
|
|
|
}
|