diff options
| author | Keith Randall <khr@golang.org> | 2021-10-18 12:19:07 -0700 |
|---|---|---|
| committer | Keith Randall <khr@golang.org> | 2021-10-19 22:47:35 +0000 |
| commit | 9fa85518ff84420af644b1dd82ff311a39cd99c1 (patch) | |
| tree | 6378c659def6885234779425c2df47aa55aa52a2 /test/typeparam | |
| parent | 1b24c9e42e527b93a39b6a6b16c20672dd2d9a03 (diff) | |
| download | go-9fa85518ff84420af644b1dd82ff311a39cd99c1.tar.xz | |
cmd/compile: substitute "". prefix with package in more import locations
The "" stand-in for the current package needs to be substituted
in more places when importing, because of generics.
""..dict.conv4["".MyString]
when imported in main and then exported, this becomes
a..dict.conv4["".MyString]
and then the linker makes that into
a..dict.conv4[main.MyString]
Which isn't correct. We need to replace on import not just
function names, but also globals, which this CL does.
Change-Id: Ia04a23b5ffd60aeeaba72c807f69261105670f8e
Reviewed-on: https://go-review.googlesource.com/c/go/+/356570
Trust: Keith Randall <khr@golang.org>
Trust: Dan Scales <danscales@google.com>
Run-TryBot: Keith Randall <khr@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dan Scales <danscales@google.com>
Diffstat (limited to 'test/typeparam')
0 files changed, 0 insertions, 0 deletions
