mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
20 lines
225 B
D
20 lines
225 B
D
unittest
|
|
{
|
|
return true; //
|
|
Lnomatch:
|
|
//printf("nomatch\n");
|
|
return false; // nomatch;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
if (x)
|
|
return true;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
return true; // match
|
|
Lnomatch: //printf("nomatch\n");
|
|
return false; // nomatch;
|
|
}
|