diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d new file mode 100644 index 00000000..0eb3a1a8 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/d/40080-static_if.d @@ -0,0 +1,11 @@ +ClLinearExpression opBinary(string op) (double constant) +{ + static if (op == "+") + return new ClLinearExpression(this, 1, constant); + else static if (op == "-") + return new ClLinearExpression(this, 1, -constant); + else static if (op == "*") + return new ClLinearExpression(this, constant, 0); + else static if (op == "/") + return new ClLinearExpression(this, 1.0 / constant, 0); +} |