Release D 2.071.0
    sigod via Digitalmars-d-announce 
    digitalmars-d-announce at puremagic.com
       
    Wed Apr  6 06:05:31 PDT 2016
    
    
  
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?
    
    
More information about the Digitalmars-d-announce
mailing list