Skip to content

Commit 6fa81cf

Browse files
authored
Fix #21669: Check parents non-empty before calling reduceLeft (#21673)
Fix #21669 This part of code is from #20084 We should check `parents` is non-empty before calling `reduceLeft`. I haven't been able to create a standalone test. To test locally: `i21669.scala` ```scala //> using dep "com.softwaremill.sttp.tapir::tapir-sttp-client:1.11.5" import sttp.tapir.* import sttp.tapir.client.sttp.SttpClientInterpreter @main def run = lazy val pingGET = endpoint.get .in("ping") .out(stringBody) SttpClientInterpreter() .toRequest(pingGET, Some(uri"http://localhost:8080")) ``` ``` > sbt publishLocal > scala compile --server=false -S 3.6.0-RC1-bin-SNAPSHOT i21669.scala -- [E008] Not Found Error: /dotty/i21669.scala:12:33 ------ 12 | .toRequest(pingGET, Some(uri"http://localhost:8080")) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |value uri is not a member of StringContext, but could be made available as an extension method. | |One of the following imports might fix the problem: | | import sttp.client3.UriContext | import sttp.client3.quick.UriContext | import sttp.model.Uri.UriContext | 1 error found Compilation failed ```
2 parents 8a104fd + 63e42d3 commit 6fa81cf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

compiler/src/dotty/tools/dotc/typer/Applications.scala

+6-1
Original file line numberDiff line numberDiff line change
@@ -1962,7 +1962,12 @@ trait Applications extends Compatibility {
19621962

19631963
def widenPrefix(alt: TermRef): Type = alt.prefix.widen match
19641964
case pre: (TypeRef | ThisType) if pre.typeSymbol.is(Module) =>
1965-
pre.parents.reduceLeft(TypeComparer.andType(_, _))
1965+
val ps = pre.parents
1966+
if ps.isEmpty then
1967+
// The parents of a module class are non-empty, unless the module is a package.
1968+
assert(pre.typeSymbol.is(Package), pre)
1969+
pre
1970+
else ps.reduceLeft(TypeComparer.andType(_, _))
19661971
case wpre => wpre
19671972

19681973
/** If two alternatives have the same symbol, we pick the one with the most

0 commit comments

Comments
 (0)