From e6f28490f1def7e31c4ff36a731f584368935e34 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sat, 7 Mar 2020 18:22:35 +0330 Subject: more bug fixes as we're getting ready for the first release. still not sure how to handle the test result evaluation. --- test/main.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'test/main.cpp') diff --git a/test/main.cpp b/test/main.cpp index 815a48d..5c2ceb8 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -1,8 +1,8 @@ class myClass { public: - myClass(); - ~myClass(); + myClass() = default; + ~myClass() {} void myMehtod1(void) {} void myMehtod2(void) {} @@ -16,6 +16,11 @@ struct myStruct { ~myStruct(); }; +union myUnion { + int a; + double b; +}; + void myFunc1(void) {} void myFunc2(void) {} -- cgit v1.2.3