...

Text file src/cuelang.org/go/cue/format/testdata/imports.golden

Documentation: cuelang.org/go/cue/format/testdata

     1package foo
     2
     3import (
     4	"cuelang.org/go/foo"
     5	"cuelang.org/go/bar"
     6	"time"
     7)
     8
     9import (
    10	time1 "time"
    11
    12	// comment f2
    13	f2 "cuelang.org/go/foo"
    14	f1 "cuelang.org/go/foo"
    15)
    16
    17import (
    18	time2 "time"
    19
    20	same "cuelang.org/go/foo"  // comment 1
    21	same2 "cuelang.org/go/foo" // comment 2
    22)
    23
    24a: time.time
    25b: foo.foo
    26c: bar.Bar

View as plain text