dfmt/tests/otbs/issue0086.d.ref

22 lines
502 B
Plaintext

unittest {
if (a)
if (b)
doSomething();
doSomethingElse();
}
void indent() {
import std.range : repeat, take;
if (config.useTabs)
foreach (i; 0 .. indentLevel + tempIndent) {
currentLineLength += config.tabSize;
output.put("\t");
} else
foreach (i; 0 .. indentLevel + tempIndent)
foreach (j; 0 .. config.indentSize) {
output.put(" ");
currentLineLength++;
}
}