summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34176-i1509_bug_1112_correction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34176-i1509_bug_1112_correction.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34176-i1509_bug_1112_correction.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34176-i1509_bug_1112_correction.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34176-i1509_bug_1112_correction.cpp
new file mode 100644
index 00000000..b9a75cf6
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/34176-i1509_bug_1112_correction.cpp
@@ -0,0 +1,26 @@
+void f()
+{
+ int i = A::B::C::bar();
+ int ii = A::B::C::bar();
+}
+
+int A::foo()
+{
+ return 1;
+}
+int A::B::foo()
+{
+ return A::foo();
+}
+int A::B::C::foo()
+{
+ return A::B::foo();
+}
+int A::B::C::D::foo()
+{
+ return A::B::C::foo();
+}
+int A::B::C::D::E::foo()
+{
+ return A::B::C::D::foo();
+}