m68k: Add -mlra
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / b20885.d
blob6e871845d0fc61a63450fcb398e1726a6908c75f
1 module b20885;
3 struct S
5 alias P = void*;
8 void main()
10 alias P = void*;
11 alias PP = void**;
12 PP[1] a = null;
13 if (const void** b = a[0]){} // OK
14 if (const P* b = a[0]){} // NG
15 if (const S.P* b = a[0]){} // NG