On Sunday, 24 May 2015 at 18:14:19 UTC, anonymous wrote:
"Static array" has a special meaning. It does not mean "static variable with an array type". Static arrays are those of the form Type[size]. That is, the size is known statically.
PS: You may also see the term "fixed-size array" which means the same as "static array" but avoids the confusion with static variables.