diff options
Diffstat (limited to 'tests/test_cpp_domain.py')
-rw-r--r-- | tests/test_cpp_domain.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py index 20160da9e..b3df490f9 100644 --- a/tests/test_cpp_domain.py +++ b/tests/test_cpp_domain.py @@ -53,6 +53,7 @@ def test_type_definitions(): check("type", "std::function<void()> F") check("type", "std::function<R(A1, A2, A3)> F") check("type", "std::function<R(A1, A2, A3, As...)> F") + check("type", "MyContainer::const_iterator") check('member', ' const std::string & name = 42', 'const std::string &name = 42') check('member', ' const std::string & name', 'const std::string &name') |