On 05/04/2026 6:02 AM, realhet wrote:
private Transaction transaction_; @property Transaction transaction() => transaction_; /+ //alias this = transaction_; This FAILS when using with() in another module. +/
``alias this = transaction;`` The private visibility modifier will be getting respected.
