Skip to content

Commit 3fae385

Browse files
committed
x
1 parent 76d15de commit 3fae385

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

builtin.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,9 +1311,8 @@ func initBuiltinTIs(pkg *Package) {
13111311
btiMap := new(typeutil.Map)
13121312
strconv := pkg.TryImport("strconv")
13131313
strings := pkg.TryImport("strings")
1314-
universe := types.Universe
1315-
btoLen := universe.Lookup("len")
1316-
btoCap := universe.Lookup("cap")
1314+
btoLen := types.Universe.Lookup("len")
1315+
btoCap := types.Universe.Lookup("cap")
13171316
{
13181317
ioxPkg := pkg.conf.PkgPathIox
13191318
if debugImportIox && ioxPkg == "" {

0 commit comments

Comments
 (0)