Thread overview
[Issue 18035] super does not work properly for template base classes
Dec 06, 2017
Mike Franklin
Dec 17, 2022
Iain Buclaw
May 09, 2023
RazvanN
December 06, 2017
https://issues.dlang.org/show_bug.cgi?id=18035

Mike Franklin <slavo5150@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |rejects-valid
                 CC|                            |slavo5150@yahoo.com

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=18035

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P4

--
May 09, 2023
https://issues.dlang.org/show_bug.cgi?id=18035

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |razvan.nitu1305@gmail.com
         Resolution|---                         |WORKSFORME

--- Comment #1 from RazvanN <razvan.nitu1305@gmail.com> ---
Today `super` is no longer usable in static contexts, therefore you get errors that `super.fun` is undefined.

Using `typeof(super).fun` makes the code compile. Arguably, the error could be
improved.

--