File tree Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ reexportdep(Node *n)
164
164
case ODOTTYPE :
165
165
case ODOTTYPE2 :
166
166
case OSTRUCTLIT :
167
+ case OARRAYLIT :
167
168
case OPTRLIT :
168
169
case OMAKEMAP :
169
170
case OMAKESLICE :
Original file line number Diff line number Diff line change
1
+ package rethinkgo
2
+
3
+ type Session struct {
4
+ }
5
+
6
+ func (s * Session ) Run (query Exp ) * int { return nil }
7
+
8
+ type List []interface {}
9
+
10
+ type Exp struct {
11
+ args []interface {}
12
+ }
13
+
14
+ func (e Exp ) UseOutdated (useOutdated bool ) Exp {
15
+ return Exp {args : List {e , useOutdated }}
16
+ }
Original file line number Diff line number Diff line change
1
+ package x
2
+
3
+ import "./rethinkgo"
4
+
5
+ var S * rethinkgo.Session
6
+
7
+
Original file line number Diff line number Diff line change
1
+ package y
2
+
3
+ import "./x"
4
+
5
+ var T = x .S
Original file line number Diff line number Diff line change
1
+ // compiledir
2
+
3
+ // Copyright 2013 The Go Authors. All rights reserved.
4
+ // Use of this source code is governed by a BSD-style
5
+ // license that can be found in the LICENSE file.
6
+
7
+ // Issue 5614: exported data for inlining may miss
8
+ // named types when used in implicit conversion to
9
+ // their underlying type.
10
+
11
+ package ignored
You can’t perform that action at this time.
0 commit comments