github.com/joomcode/cue@v0.4.4-0.20221111115225-539fe3512047/cue/format/testdata/imports.input (about) 1 package foo 2 3 import ( 4 "github.com/joomcode/cue/foo" 5 "github.com/joomcode/cue/bar" 6 "time" 7 ) 8 9 import ( 10 time1 "time" 11 12 // comment f2 13 f2 "github.com/joomcode/cue/foo" 14 f1 "github.com/joomcode/cue/foo" 15 ) 16 17 import ( 18 time2 "time" 19 20 same "github.com/joomcode/cue/foo" // comment 1 21 same2 "github.com/joomcode/cue/foo" // comment 2 22 ) 23 24 25 a: time.time 26 b: foo.foo 27 c: bar.Bar