diff options
Diffstat (limited to 'Tests/QtAutogen/staticLibraryCycle/a.cpp')
-rw-r--r-- | Tests/QtAutogen/staticLibraryCycle/a.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/QtAutogen/staticLibraryCycle/a.cpp b/Tests/QtAutogen/staticLibraryCycle/a.cpp new file mode 100644 index 0000000..97cc66e --- /dev/null +++ b/Tests/QtAutogen/staticLibraryCycle/a.cpp @@ -0,0 +1,7 @@ +#include "a.h" +#include "b.h" + +A::A() +{ + B b; +} |