On Tuesday, 5 April 2016 at 22:43:05 UTC, Martin Nowak wrote:
Glad to announce D 2.071.0.

http://dlang.org/download.html

This release fixes many long-standing issues with imports and the module
system.
See the changelog for more details.

http://dlang.org/changelog/2.071.0.html

-Martin

        module test;
        
        struct S {
                package int field;
        }
        
        void main() {
                S s;
s.field = 1; // Deprecation: test.S.field is not visible from module test
        }

Is this correct behavior?

Reply via email to