aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/renameDependency/before/lib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/renameDependency/before/lib.cpp')
-rw-r--r--tests/auto/blackbox/testdata/renameDependency/before/lib.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/renameDependency/before/lib.cpp b/tests/auto/blackbox/testdata/renameDependency/before/lib.cpp
new file mode 100644
index 000000000..9ad8f3857
--- /dev/null
+++ b/tests/auto/blackbox/testdata/renameDependency/before/lib.cpp
@@ -0,0 +1,7 @@
+#include "lib.h"
+#include <iostream>
+
+void print_two_numbers(int a, int b/*, int c*/)
+{
+ std::cout << "a=" << a << ", b=" << b /*<< ", c=" << c */ << std::endl;
+}