diff options
Diffstat (limited to 'Tests/QtAutogen/StaticLibraryCycle/main.cpp')
-rw-r--r-- | Tests/QtAutogen/StaticLibraryCycle/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/QtAutogen/StaticLibraryCycle/main.cpp b/Tests/QtAutogen/StaticLibraryCycle/main.cpp new file mode 100644 index 0000000..f5b7fd2 --- /dev/null +++ b/Tests/QtAutogen/StaticLibraryCycle/main.cpp @@ -0,0 +1,8 @@ +#include "a.h" + +int main(int argv, char** args) +{ + // Object instances + A a; + return 0; +} |