diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/d/40023-bug-indent.d')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/d/40023-bug-indent.d | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/d/40023-bug-indent.d b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/d/40023-bug-indent.d deleted file mode 100644 index 6071604d..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/d/40023-bug-indent.d +++ /dev/null @@ -1,39 +0,0 @@ -class TemplatedClass(T) {} -class TemplatedClass2(T, U) {} - -class Axxxxxxxxxxxxxxxx { - alias A = int *; - void f() - { - } -} - -class C -{ - //--------------| <= (1) - non first col comment -> indent - Axxxxxxxxxxxxxxxx.A createAssignment() - { - return(null); - } - void func2(Axxxxxxxxxxxxxxxx[] container) - { - foreach (v; container) - { - v.f(); - } - } - - // | <= (2) - void func3(TemplatedClass!int aValue) - { - } - - void func4(TemplatedClass2!(int, int) b) - { - } -} - -int main() -{ - return 0; -} |