mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
131 B
C
9 lines
131 B
C
// issues.dlang.org/show_bug.cgi?id=22755
|
|
|
|
void *malloc(unsigned);
|
|
|
|
void test()
|
|
{
|
|
int *p = malloc(sizeof *p);
|
|
int x = x;
|
|
}
|