diff --git a/simgear/props/propertyObject_test.cxx b/simgear/props/propertyObject_test.cxx index d0d59472..5873976e 100644 --- a/simgear/props/propertyObject_test.cxx +++ b/simgear/props/propertyObject_test.cxx @@ -205,6 +205,14 @@ void testCreate() } +void testDeclare() +{ + PropertyObject a; + PropertyObject b; + PropertyObject c; + PropertyObject d; +} + int main(int argc, char* argv[]) { testRoot = new SGPropertyNode(); @@ -227,6 +235,7 @@ int main(int argc, char* argv[]) testAssignment(); testSTLContainer(); testCreate(); + testDeclare(); return EXIT_SUCCESS; }