summaryrefslogtreecommitdiffstats
path: root/tests/auto/other
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/other')
-rw-r--r--tests/auto/other/compiler/tst_compiler.cpp5
-rw-r--r--tests/auto/other/other.pro2
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/auto/other/compiler/tst_compiler.cpp b/tests/auto/other/compiler/tst_compiler.cpp
index 55fab00156..121d731757 100644
--- a/tests/auto/other/compiler/tst_compiler.cpp
+++ b/tests/auto/other/compiler/tst_compiler.cpp
@@ -870,11 +870,14 @@ void tst_Compiler::cxx11_default_members()
};
class DefaultMembersChild: public DefaultMembers
{
+ DefaultMembersChild(const DefaultMembersChild &) : DefaultMembers() {}
public:
DefaultMembersChild():DefaultMembers() {};
+ DefaultMembersChild(DefaultMembersChild &&) = default;
};
DefaultMembersChild dm;
- Q_UNUSED(dm);
+ DefaultMembersChild dm2 = std::move(dm);
+ Q_UNUSED(dm2);
#endif
}
diff --git a/tests/auto/other/other.pro b/tests/auto/other/other.pro
index a7297afa2b..a12f08488d 100644
--- a/tests/auto/other/other.pro
+++ b/tests/auto/other/other.pro
@@ -1,4 +1,6 @@
TEMPLATE=subdirs
+QT_FOR_CONFIG += gui-private
+
SUBDIRS=\
compiler \
gestures \