]> Cypherpunks.ru repositories - gostls13.git/blob - test/parentype.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / parentype.go
1 // compile
2
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 // Test that types can be parenthesized.
8
9 package main
10
11 func f(interface{})
12 func g() {}
13 func main() {
14         f(map[string]string{"a":"b","c":"d"})
15         f([...]int{1,2,3})
16         f(map[string]func(){"a":g,"c":g})
17         f(make(chan(<-chan int)))
18         f(make(chan<-(chan int)))
19 }