github.com/octohelm/cuemod@v0.9.4/pkg/cueify/golang/testdata/src/values.go (about)

     1  package src
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  const (
     8  	// test
     9  	StringValue = "some str" // test2
    10  	BoolValue   = true
    11  )
    12  
    13  const (
    14  	IntValue int = iota + 1
    15  	IntValue2
    16  )
    17  
    18  const Rename = time.ANSIC