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

--- Comment #2 from João Lourenço <[email protected]> ---
So I just tested this and it compiled fine with DIP1000
---
struct Bar
{
        @safe void dummy() {}
}

@safe
void main()
{
    scope bar = Bar();
    bar.dummy; // ok
}

---

--

Reply via email to