https://issues.dlang.org/show_bug.cgi?id=15897
Martin Nowak <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Martin Nowak <[email protected]> --- Yes I think that should compil, just like this works. ---- private void create(Animal animal) {} class Animal { } void foo(Cat cat) { cat.create(); // >> no property create for type 'b.cat' } ---- --
