blob: b76bee3b4806373eb0cd12dbaa07e9943960765e [file] [log] [blame]
package linterTest
import "fmt"
func ExportedFunc() {
a := 10
func() {
a := 20
}()
fmt.Println("OUTER A: ", a)
}