Sign in
go
/
vscode-go
/
9a2bc104f0db3d42f83e58abeaa668b0e4374b2d
/
.
/
test
/
fixtures
/
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)
}