mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
243 B
C
14 lines
243 B
C
/* https://issues.dlang.org/show_bug.cgi?id=23058
|
|
*/
|
|
|
|
char s1[5] = "hello";
|
|
char s2[6] = "hello";
|
|
char s3[7] = "hello";
|
|
|
|
void test()
|
|
{
|
|
char s1[5] = "hello";
|
|
char s2[6] = "hello";
|
|
char s3[7] = "hello";
|
|
char s4[50] = "hello";
|
|
}
|