cuelang.org/go@v0.10.1/encoding/openapi/testdata/nested.cue (about)

     1  // File comment.
     2  
     3  #Struct: {
     4  	#T: int
     5  
     6  	a?: #T
     7  
     8  	{b?: #T}
     9  
    10  	c?: [...#T]
    11  }