1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail263.d(18): Error: function fail263.f (byte* p) is not callable using argument types (const(byte)*)
5 ---
6 */
7 
8 // Issue 2766 - DMD hangs with 0%cpu
9 
10 const byte[] A = [ cast(byte)0 ];
11 
f(byte * p)12 void f(byte* p)
13 {
14 }
15 
func()16 void func()
17 {
18     f(A.ptr);
19 }
20