Skip to content

Fix #3343: Make baseType work properly with type lambdas #3345

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions compiler/src/dotty/tools/dotc/core/SymDenotations.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1646,13 +1646,11 @@ object SymDenotations {
case tp @ AppliedType(tycon, args) =>
val subsym = tycon.typeSymbol
if (subsym eq symbol) tp
else subsym.denot match {
case clsd: ClassDenotation =>
val tparams = clsd.typeParams
if (tparams.hasSameLengthAs(args)) baseTypeOf(tycon).subst(tparams, args)
else NoType
case _ =>
else tycon.typeParams match {
case LambdaParam(_, _) :: _ =>
baseTypeOf(tp.superType)
case tparams: List[Symbol @unchecked] =>
baseTypeOf(tycon).subst(tparams, args)
}
case tp: TypeProxy =>
baseTypeOf(tp.superType)
Expand Down
5 changes: 5 additions & 0 deletions tests/pos/i3343.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
object Test {
def foo[C[_]](implicit t: C[Char] => Traversable[Char]): C[Char] = ???

val a: List[Char] = foo
}