diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/d/static_if.d')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/d/static_if.d | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/d/static_if.d b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/d/static_if.d new file mode 100644 index 00000000..24e6eaba --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/d/static_if.d @@ -0,0 +1,14 @@ +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); + } |