...

Text file src/cmd/gofmt/testdata/emptydecl.input

Documentation: cmd/gofmt/testdata

     1//gofmt -s
     2
     3// Test case for issue 7631.
     4
     5package main
     6
     7// Keep this declaration
     8var ()
     9
    10const (
    11// Keep this declaration
    12)
    13
    14type ()
    15
    16func main() {}

View as plain text