Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / folding / bad.go.in
1 package folding //@fold("package")
2
3 import ( "fmt"
4         _ "log"
5 )
6
7 import ( 
8         _ "os" )
9         
10 // badBar is a function.
11 func badBar() string { x := true
12         if x { 
13                 // This is the only foldable thing in this file when lineFoldingOnly
14                 fmt.Println("true")
15         } else {
16                 fmt.Println("false") }
17         return
18 }