1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice8711.d(8): Error: cannot use array to initialize int function(int)
5 ---
6 */
7 
8 int function(int) foos = [x => 0];
9