github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/import6.gno (about)

     1  package main
     2  
     3  import "github.com/gnolang/gno/_test/c1"
     4  
     5  func main() {
     6  	println(c1.C1)
     7  }
     8  
     9  // Error:
    10  // github.com/gnolang/gno/_test/c2/c2.gno:1: import cycle detected: "github.com/gnolang/gno/_test/c1" (through [github.com/gnolang/gno/_test/c1 github.com/gnolang/gno/_test/c2])