Skip to content

Commit 73b3331

Browse files
committed
Ignore outer errors temporarily
1 parent b8a7f64 commit 73b3331

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/src/dotty/tools/dotc/transform/init/Semantic.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,8 @@ object Semantic:
13971397
resolveThis(target, thisV, cur)
13981398

13991399
case None =>
1400-
report.error("[Internal error] unexpected outerSelect, thisV = " + thisV + ", target = " + target.show + ", hops = " + hops, trace.toVector.last.srcPos)
1400+
// TODO: use error once we fix https://github.com/lampepfl/dotty/issues/15465
1401+
report.warning("[Internal error] unexpected outerSelect, thisV = " + thisV + ", target = " + target.show + ", hops = " + hops, trace.toVector.last.srcPos)
14011402
Cold
14021403

14031404
case RefSet(refs) =>

0 commit comments

Comments
 (0)