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

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from [email protected] ---
It doesn't really look like a bug beside the fact that the compiler doesn't
care about the methods being redefined... The first one to appear wins, easy!

```
struct S0
{
    bool empty() { return false; }
    int  empty() { return false; }
}
pragma(msg, typeof(S0.empty)); // still bool()
```

--

Reply via email to