diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/bug_1003.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/bug_1003.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/bug_1003.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/bug_1003.cpp deleted file mode 100644 index 7495b93d..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/bug_1003.cpp +++ /dev/null @@ -1,33 +0,0 @@ -class Foo -{ -public: - Foo( - int x_, - int y_ - ) : x(x_), y(y_) - { - } -private: - int x; - int y; -}; - -class Bar -{ -public: - // Splits 3,5 onto newlines - Bar() : Bar(3, 5) - { - } - - // No split here - Bar( - int x, - int y - ) : foo(x, y) - { - } - - Foo foo; -}; - |