aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected')
-rw-r--r--src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected b/src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected
new file mode 100644
index 0000000000..9b1f655f3f
--- /dev/null
+++ b/src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected
@@ -0,0 +1,10 @@
+#ifndef THECLASS_H
+#define THECLASS_H
+
+class TheClass {
+ void func();
+};
+
+void TheClass::func() {}
+
+#endif // THECLASS_H