mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
* Updated object.d to 1.021 * Added -novalidate command line option. this is sometimes useful when debugging as it may let you read the .ll even if it's invalid.
18 lines
163 B
D
18 lines
163 B
D
module bug5;
|
|
|
|
struct hah {
|
|
static hah f()
|
|
{
|
|
hah res;
|
|
return res;
|
|
}
|
|
hah g()
|
|
{
|
|
return hah.init;
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|