blob: 7235216220019c7aac7b7a01f5f214644acfbf30 [file] [log] [blame]
void foo ( int line = __LINE__ ) ( string msg = "" )
{
static assert (line == 8);
}
void main()
{
foo();
}