diff options
Diffstat (limited to 'Tests/PositionIndependentTargets/pic_lib.cpp')
-rw-r--r-- | Tests/PositionIndependentTargets/pic_lib.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/PositionIndependentTargets/pic_lib.cpp b/Tests/PositionIndependentTargets/pic_lib.cpp new file mode 100644 index 000000000..b8b25a33e --- /dev/null +++ b/Tests/PositionIndependentTargets/pic_lib.cpp @@ -0,0 +1,12 @@ + +#include "pic_test.h" + +class PIC_TEST_EXPORT Dummy +{ + int dummy(); +}; + +int Dummy::dummy() +{ + return 0; +} |