github.com/megatontech/mynoteforgo@v0.0.0-20200507084910-5d0c6ea6e890/源码/cmd/gofmt/testdata/emptydecl.input (about)

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