On Monday, 13 January 2014 at 11:39:02 UTC, Russel Winder wrote: > immutable auto versionNumber = strip(import("VERSION")); The "auto" doesn't do anything in this case, as immutable is a storage class and hence implies auto. It might be better to write: static immutable versionNumber = ...