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.
7 // Test that types can be parenthesized.
14 f(map[string]string{"a":"b","c":"d"})
16 f(map[string]func(){"a":g
,"c":g
})
17 f(make(chan(<-chan int)))
18 f(make(chan<-(chan int)))