mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
116 B
D
9 lines
116 B
D
void foo ( int line = __LINE__ ) ( string msg = "" )
|
|
{
|
|
static assert (line == 8);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
foo();
|
|
}
|