1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/fail18.d(14): Error: need upper and lower bound to slice pointer 5 --- 6 */ 7 8 // 7/25 9 // Internal error: ..\ztc\cgcod.c 1464 10 main()11 void main () 12 { 13 int x = 3; 14 int[] a = (&x)[]; 15 } 16