summaryrefslogtreecommitdiff
path: root/tests/testsrc/good/final1.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-01-17 23:01:06 +0300
committerAndrei Karas <akaras@inbox.ru>2017-01-17 23:02:20 +0300
commitf06a985adff1ec54e7a6c3753d8dfd077b5dd37d (patch)
tree3cdf5fbc98b47c51205e950110d9a6cd31096e23 /tests/testsrc/good/final1.cpp
parent1a8ab0421d23125830ba3aac4d8b7910c257be16 (diff)
downloadmplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.tar.gz
mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.tar.bz2
mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.tar.xz
mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.zip
Add checks for A_DEFAULT_COPY / A_DELETE_COPY.
Also fix error in detection for final/notfinal classes.
Diffstat (limited to 'tests/testsrc/good/final1.cpp')
-rw-r--r--tests/testsrc/good/final1.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/testsrc/good/final1.cpp b/tests/testsrc/good/final1.cpp
index cdb6a1b..abac4dd 100644
--- a/tests/testsrc/good/final1.cpp
+++ b/tests/testsrc/good/final1.cpp
@@ -24,12 +24,15 @@
class Test1 final
{
+ A_DELETE_COPY(Test1);
Test1();
}
class Test2 notfinal : public Test1
{
Test2();
+
+ A_DEFAULT_COPY(Test2);
}
/*