File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
src/dotty/tools/dotc/typer Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ trait TypeAssigner {
89
89
else tp1
90
90
case tp : TypeVar if ctx.typerState.constraint.contains(tp) =>
91
91
val lo = ctx.typerState.constraint.fullLowerBound(tp.origin)
92
- val lo1 = avoid(lo, syms )
92
+ val lo1 = avoid(lo, symsToAvoid )
93
93
if (lo1 ne lo) lo1 else tp
94
94
case _ =>
95
95
mapOver(tp)
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ class tests extends CompilerTest {
27
27
val failedOther = List (" -Ystop-before:collectEntryPoints" ) // some non-obvious reason. need to look deeper
28
28
val twice = List (" #runs" , " 2" , " -YnoDoubleBindings" )
29
29
val staleSymbolError : List [String ] = List ()
30
- val testPickling = List (" -Ytest-pickler" , " -Ystop-after:pickler" )
31
30
32
31
val allowDeepSubtypes = defaultOptions diff List (" -Yno-deep-subtypes" )
33
32
You can’t perform that action at this time.
0 commit comments