mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
13 lines
122 B
Go
13 lines
122 B
Go
package main
|
|
|
|
func init() {
|
|
println("here")
|
|
}
|
|
|
|
func main() {
|
|
init()
|
|
}
|
|
|
|
// Error:
|
|
// _test/init1.go:8:2: undefined: init
|