mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
20 lines
484 B
D
20 lines
484 B
D
unittest
|
|
{
|
|
validMoves!(typeof(open))(open, tokens[0 .. tokensEnd], depths[0 .. tokensEnd],
|
|
current.breaks, config, currentLineLength, indentLevel);
|
|
}
|
|
|
|
/+
|
|
// good
|
|
unittest
|
|
{
|
|
validMoves!(typeof(open))(open, tokens[0 .. tokensEnd], depths[0 .. tokensEnd],
|
|
current.breaks, config, currentLineLength, indentLevel);
|
|
}
|
|
// bad
|
|
unittest
|
|
{
|
|
validMoves!(typeof(open))(open, tokens[0 .. tokensEnd],
|
|
depths[0 .. tokensEnd], current.breaks, config, currentLineLength, indentLevel);
|
|
}
|
|
+/
|