mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
226 B
C
13 lines
226 B
C
// DISABLED: win freebsd openbsd
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23886
|
|
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
int *p = (int*)alloca(100 * sizeof(int));
|
|
for (int i = 0; i < 100; ++i)
|
|
p[i] = i;
|
|
return 0;
|
|
}
|