cuelang.org/go@v0.10.1/internal/core/runtime/testdata/nullinit.txtar (about)

     1  -- init.cue --
     2  @extern("test")
     3  
     4  // Package name failinit is used as a marker in the test code to indicate
     5  // there is nothing to do.
     6  package nullinit
     7  
     8  
     9  foo: _ @extern("file.xx")
    10  
    11  -- out/extern --
    12  {
    13  	foo: _
    14  }