1 version(D_SIMD)2 version(D_SIMD) 3 { 4 const __vector(float[4]) si = [1f, 1f, 1f, 1f]; 5 6 void main() 7 { 8 auto arr = si; 9 return; 10 } 11 } 12