summaryrefslogtreecommitdiff
path: root/test/files/neg/t6663.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-6663: don't ignore type parameter on selectDynamic invocationJan Niehusmann2012-11-161-0/+19
Fix mkInvoke to handle selectDynamic calls of the form new C.foo[T].xyz or new C.foo[T].xyz :U (where C extends Dynamic) Without this patch, the type parameter was silently ignored, and possibly inferred to a different. This patch fixes mkInvoke to handle these cases, where ctxTree has the form Select(TypeApply(fun, targs), nme) or Typed(...)