On 12/20/13 12:43 PM, Martin Nowak wrote:Couldn't static imports be made lazy without breaking any code?One simple idea is to make all imports lazy - no change in semantics.Andrei
If the import is lazy, how do you know which import to load when you see an unknown symbol? lazy static import works, because they have to be fully qualified.
