dmd/compiler/test/compilable/test15668.d
2022-07-09 18:53:07 +02:00

9 lines
116 B
D

void foo ( int line = __LINE__ ) ( string msg = "" )
{
static assert (line == 8);
}
void main()
{
foo();
}