summaryrefslogtreecommitdiff
path: root/test/files/run/t7932.scala
Commit message (Collapse)AuthorAgeFilesLines
* SD-98 don't emit unnecessary mixin forwardersLukas Rytz2016-04-121-4/+21
| | | | | | | | In most cases when a class inherits a concrete method from a trait we don't need to generate a forwarder to the default method in the class. t5148 is moved to pos as it compiles without error now. the error message ("missing or invalid dependency") is still tested by t6440b.
* 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.