Skip to content

Commit 0afbd6c

Browse files
committed
Fixing conflicts between scala#361 and scala#394
1 parent 8a99155 commit 0afbd6c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/dotty/tools/dotc/typer/TypeAssigner.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ trait TypeAssigner {
8989
else tp1
9090
case tp: TypeVar if ctx.typerState.constraint.contains(tp) =>
9191
val lo = ctx.typerState.constraint.fullLowerBound(tp.origin)
92-
val lo1 = avoid(lo, syms)
92+
val lo1 = avoid(lo, symsToAvoid)
9393
if (lo1 ne lo) lo1 else tp
9494
case _ =>
9595
mapOver(tp)

test/dotc/tests.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class tests extends CompilerTest {
2727
val failedOther = List("-Ystop-before:collectEntryPoints") // some non-obvious reason. need to look deeper
2828
val twice = List("#runs", "2", "-YnoDoubleBindings")
2929
val staleSymbolError: List[String] = List()
30-
val testPickling = List("-Ytest-pickler", "-Ystop-after:pickler")
3130

3231
val allowDeepSubtypes = defaultOptions diff List("-Yno-deep-subtypes")
3332

0 commit comments

Comments
 (0)