mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
Split up declaration, constant initializer gen and definition for globals, structs, classes and functions. Improved ClassInfo support (not complete), not in vtable yet. Fixed a bunch of forward reference problems. Much more. Major commit! :)
11 lines
121 B
D
11 lines
121 B
D
module bug63;
|
|
|
|
void main()
|
|
{
|
|
static void notnested()
|
|
{
|
|
printf("hello world\n");
|
|
}
|
|
notnested();
|
|
}
|