summaryrefslogtreecommitdiff
path: root/src/cmd/gofmt/testdata/emptydecl.golden
blob: 33d6435e0a99dc63d16abb9cf6edaf9799b2de23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//gofmt -s

// Test case for issue 7631.

package main

// Keep this declaration
var ()

const (
// Keep this declaration
)

func main() {}