Skip to content
Draft
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
2 changes: 1 addition & 1 deletion compiler/src/dotty/tools/dotc/typer/Dynamic.scala
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ trait Dynamic {
if tpe.paramInfoss.nestedExists(!TypeErasure.hasStableErasure(_)) then
fail(i"has a parameter type with an unstable erasure") :: Nil
else
TypeErasure.erasure(tpe).asInstanceOf[MethodType].paramInfos.map(clsOf(_))
tpe.paramInfoss.flatten.map(tp => clsOf(tp.baseType(tp.classSymbol)))
structuralCall(nme.applyDynamic, classOfs).maybeBoxingCast(tpe.finalResultType)
}

Expand Down
14 changes: 14 additions & 0 deletions tests/pos/i11043.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import scala.reflect.Selectable.reflectiveSelectable

object Test {
type Runner = { def run(args: Array[String]): Unit }

def test(args: Array[String], runner: Runner): Unit =
runner.run(args)

def main(args: Array[String]): Unit = {
test(Array("foo", "bar"), new {
def run(args: Array[String]): Unit = args foreach println
})
}
}
5 changes: 5 additions & 0 deletions tests/pos/i11043min.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import scala.reflect.Selectable.reflectiveSelectable

type Runner = { def run(args: Array[String]): Unit }

def test(runner: Runner): Unit = runner.run(???)
Loading