mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
12 lines
142 B
D
12 lines
142 B
D
void main()
|
|
{
|
|
debug foo(); else bar();
|
|
|
|
debug (0) foo(); else bar();
|
|
|
|
// inlineElse reset check
|
|
|
|
debug foo();
|
|
|
|
if (true) foo(); else bar();
|
|
}
|