Skip to content

Commit 63dc37b

Browse files
committed
Fix rebase breakage
1 parent fdb0512 commit 63dc37b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

compiler/src/dotty/tools/backend/sjs/JSCodeGen.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2270,9 +2270,9 @@ class JSCodeGen()(implicit ctx: Context) {
22702270
if (sym == defn.BoxedUnit_UNIT) {
22712271
js.Undefined()
22722272
} else {
2273-
val instance = genLoadModule(sym.owner)
2273+
val inst = genLoadModule(sym.owner)
22742274
val method = encodeStaticMemberSym(sym)
2275-
js.Apply(instance, method, Nil)(toIRType(sym.info))
2275+
js.Apply(inst, method, Nil)(toIRType(sym.info))
22762276
}
22772277
}
22782278

compiler/test/dotc/pos-test-pickling.blacklist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ t3249
1010
t3486
1111
t3612.scala
1212
typelevel0.scala
13+
reference

0 commit comments

Comments
 (0)