aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libother
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-25 19:08:30 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-02-26 14:26:04 -0300
commit29364cfe33c86f9a0cd884e99e0f63d44785abae (patch)
tree4280cf1ac29642ab80deee548cb3b5f4d18471b2 /tests/libother
parentf1427d101d4d0d73070f250d598d7fdc64ff2b52 (diff)
Added test for use of ObjectCopier of a type declared in other module.
This should create undefinied symbols on other module if it fails.
Diffstat (limited to 'tests/libother')
-rw-r--r--tests/libother/othermultiplederived.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/libother/othermultiplederived.h b/tests/libother/othermultiplederived.h
index 454bfaf0f..36c23ebc6 100644
--- a/tests/libother/othermultiplederived.h
+++ b/tests/libother/othermultiplederived.h
@@ -42,6 +42,9 @@ class ObjectType;
class LIBOTHER_API OtherMultipleDerived : public MDerived1
{
+public:
+ // this will use CppCopier from other module (bug#142)
+ VirtualMethods returnUselessClass() { return VirtualMethods(); }
};
#endif