mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
24 lines
206 B
D
24 lines
206 B
D
module nested12;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
func();
|
|
}
|
|
|
|
void func()
|
|
{
|
|
void a(int i)
|
|
{
|
|
printf("%d\n", i);
|
|
}
|
|
|
|
void b()
|
|
{
|
|
a(42);
|
|
}
|
|
|
|
b();
|
|
}
|