diff options
Diffstat (limited to 'tests/test_cpp_domain.py')
-rw-r--r-- | tests/test_cpp_domain.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py index 8e1cb22bb..ba3045297 100644 --- a/tests/test_cpp_domain.py +++ b/tests/test_cpp_domain.py @@ -124,6 +124,8 @@ def test_type_definitions(): x = 'int foo(D d=x(a' raises(DefinitionError, parse, 'function', x) + x = 'int foo(const A&... a)' + assert unicode(parse('function', x)) == x def test_bases(): x = 'A' |