mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
22 lines
147 B
D
22 lines
147 B
D
module bug8;
|
|
|
|
void main()
|
|
{
|
|
s = newS();
|
|
}
|
|
|
|
S* s;
|
|
|
|
struct S
|
|
{
|
|
int i;
|
|
}
|
|
|
|
S* newS()
|
|
{
|
|
auto tmp = new S;
|
|
tmp.i = 4;
|
|
return tmp;
|
|
}
|
|
|