2012-02-16 23:48:57 -05:00
|
|
|
// compile
|
2008-10-08 15:33:18 -07:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2012-02-19 14:28:53 +11:00
|
|
|
// Test that top-level parenthesized declarations can be empty.
|
|
|
|
// Compiles but does not run.
|
|
|
|
|
2008-10-08 15:33:18 -07:00
|
|
|
package P
|
|
|
|
|
|
|
|
import ( )
|
|
|
|
const ( )
|
|
|
|
var ( )
|
|
|
|
type ( )
|