summaryrefslogtreecommitdiff
path: root/test/files/run/t7932.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7932 Exclude PolyTypes from Java generic signaturesJason Zaugg2014-02-181-0/+11
In the enclosed test case, we were emitting just the result type of `[a, b]Float` in the Java generic signature. This resulted in a `GenericSignatureFormatError`. This commit changes `argSig` to project such type functions to `*` instead. The test case shows that we still emit the class when we use its type constructor directly as the type argument.