File tree 2 files changed +48
-0
lines changed 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ package q
2
+
3
+ import "p"
4
+
5
+ type _ = int
6
+ type a = struct{ x int }
7
+ type b = p.B
8
+
9
+ type (
10
+ _ = chan<- int
11
+ aa = interface{}
12
+ bb = p.BB
13
+ )
14
+
15
+ // TODO(gri) We may want to put the '=' into a separate column if
16
+ // we have mixed (regular and alias) type declarations in a group.
17
+ type (
18
+ _ chan<- int
19
+ _ = chan<- int
20
+ aa0 interface{}
21
+ aaa = interface{}
22
+ bb0 p.BB
23
+ bbb = p.BB
24
+ )
Original file line number Diff line number Diff line change
1
+ package q
2
+
3
+ import "p"
4
+
5
+ type _ = int
6
+ type a = struct{ x int }
7
+ type b = p.B
8
+
9
+ type (
10
+ _ = chan<- int
11
+ aa = interface{}
12
+ bb = p.BB
13
+ )
14
+
15
+ // TODO(gri) We may want to put the '=' into a separate column if
16
+ // we have mixed (regular and alias) type declarations in a group.
17
+ type (
18
+ _ chan<- int
19
+ _ = chan<- int
20
+ aa0 interface{}
21
+ aaa = interface{}
22
+ bb0 p.BB
23
+ bbb = p.BB
24
+ )
You can’t perform that action at this time.
0 commit comments