Sign in
go
/
vscode-go
/
46f249de0ee502a66c259f99e29cc1338bdebf13
/
.
/
test
/
testdata
/
linterTest
/
linter_1.go
blob: b76bee3b4806373eb0cd12dbaa07e9943960765e [
file
] [
log
] [
blame
]
package linterTest
import "fmt"
func ExportedFunc() {
a := 10
func() {
a := 20
}()
fmt.Println("OUTER A: ", a)
}