mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-01 23:45:50 +00:00
12 lines
135 B
Go
12 lines
135 B
Go
|
package pkg3
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neo-go/pkg/compiler/testdata/importcycle/pkg2"
|
||
|
)
|
||
|
|
||
|
var A int
|
||
|
|
||
|
func init() {
|
||
|
pkg2.A = 1
|
||
|
}
|