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

--- Comment #1 from uplink.co...@googlemail.com ---
In the following example: 

class Base
{
   int x = 12;
}

class Child : Base
{
    int y = 34;
}


void main()
{
    Base b = new Base();
    Child c = new Child();

    int break_here = 1;
}


the child class `Child` does not have a member `x` according to debuginfo
This is because a `DW_TAG_inheritance` is missing.

--

Reply via email to