[Issue 20333] cannot get frame pointer to <template function> when passing base class element

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Oct 29 11:03:57 UTC 2019


https://issues.dlang.org/show_bug.cgi?id=20333

moonlightsentinel at disroot.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |moonlightsentinel at disroot.o
                   |                            |rg

--- Comment #1 from moonlightsentinel at disroot.org ---
Reduced with dustmite:

class Frop {}

class Foo {
  Frop frop1;
}

class Bar: Foo {
  void zoo(alias V)() {
  }
  void setup() {
    zoo!frop1;
  }
}

--


More information about the Digitalmars-d-bugs mailing list