```b.d class B { protected static int x = 42; } ``` ```a.d import b; class A { static int x = super.x; } ``` Error: class b.B member x is not accessible
oops, it should be `class A : B` of course
This works now, probably since the time the access code was removed (a few releases ago).