mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
14 lines
109 B
D
14 lines
109 B
D
module nested1;
|
|
|
|
void func(int i)
|
|
{
|
|
(){
|
|
assert(i == 3);
|
|
}();
|
|
}
|
|
|
|
void main()
|
|
{
|
|
func(3);
|
|
}
|