summaryrefslogtreecommitdiff
path: root/Tests/Qt4Targets/main_wrap_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Qt4Targets/main_wrap_test.cpp')
-rw-r--r--Tests/Qt4Targets/main_wrap_test.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/Qt4Targets/main_wrap_test.cpp b/Tests/Qt4Targets/main_wrap_test.cpp
new file mode 100644
index 000000000..21edc7b32
--- /dev/null
+++ b/Tests/Qt4Targets/main_wrap_test.cpp
@@ -0,0 +1,11 @@
+
+#include <QObject>
+
+#include "mywrapobject.h"
+
+int main(int argc, char **argv)
+{
+ MyWrapObject mwo;
+ mwo.objectName();
+ return 0;
+}