summary refs log tree commit diff stats
path: root/tests/generics/t5602_inheritence.nim
Commit message (Collapse)AuthorAgeFilesLines
* Bugfix: The compiler were not inserting proper downcasts for generic typesZahary Karadjov2018-05-071-1/+7
| | | | | | | This resulted in a codegen error in C++ mode, because the generic types were not defined in modules where calls requiring downcasts were used (generating a downcast forces the inclusion of the full definition of the involved types).
* Restore the Nim's 0.14 proper handling of generic aliasesZahary Karadjov2017-04-081-0/+18
A more efficient implementation is possible by restoring the old lifting ot tyGenericInvocation to tyGenericInst in liftTypeParam, but this fix will suffice for now. fixes #5087 fixes #5602 fixes #5641 fixes #5570