1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail13187.d(12): Error: pure function 'fail13187.test' cannot access mutable static data 'my_func_ptr'
5 ---
6 */
7 
8 int function(int) pure my_func_ptr;
9 
test()10 void test() pure
11 {
12     my_func_ptr(1);
13 }
14