mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-29 16:19:02 +02:00
11 lines
150 B
D
11 lines
150 B
D
module scope1;
|
|
extern(C) int printf(char*, ...);
|
|
void main()
|
|
{
|
|
printf("1\n");
|
|
{
|
|
scope(exit) printf("2\n");
|
|
}
|
|
printf("3\n");
|
|
}
|