/* why.d
   221.8 KB compiled & linked
   129.6 KB compiled (.o file only)

   .obj file is 'only' 1.5KB if the struct definition is commented out.
*/


struct exampleObj {
	uint[1024*32] mydata;
}
// I don't declare any instances of an exampleObj object.

int main() {
	return 0;
}
