Don't warn when alignment of global common data exceeds maximum alignment.
[official-gcc.git] / gcc / testsuite / gdc.dg / pr91238.d
blob26efb9062124858881ede3c52e646fedaff28684
1 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91238
2 // { dg-do compile }
4 alias T = const(char)*;
6 T name()
8 return "";
11 void collect(ref T)
15 void configure(T[T] targets)
17 collect(targets[name]);