https://issues.dlang.org/show_bug.cgi?id=23915
RazvanN <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from RazvanN <[email protected]> --- This doesn't seem to have anything to do with property. This yields the same result: ``` template T(bool value) {} bool getValue() { return true; } alias Inst1 = T!(getValue); // OK struct S2 { static bool getValue() { return true; } } alias Inst2 = T!(S2.getValue); // OK struct S3 { bool getValue() { return true; } } alias Inst = T!(S3().getValue); // Error ``` --
