module pind.samples.ja.static_foreach.static_foreach_1; void main() { enum arr = [1, 2]; // 実行時に実行され、コンパイル時に展開されない: foreach (i; arr) { // ... } }