diff --git a/Examples/test-suite/common.mk b/Examples/test-suite/common.mk index 6bc3107a7..3f72d6785 100644 --- a/Examples/test-suite/common.mk +++ b/Examples/test-suite/common.mk @@ -49,8 +49,10 @@ CPP_TEST_BROKEN += \ namespace_union \ nested_comment \ overload_complicated \ + template_broken \ template_expr + # Broken C test cases. (Can be run individually using make testcase.ctest.) C_TEST_BROKEN += \ tag_no_clash_with_variable diff --git a/Examples/test-suite/template_default_pointer.i b/Examples/test-suite/template_default_pointer.i new file mode 100644 index 000000000..9582ef461 --- /dev/null +++ b/Examples/test-suite/template_default_pointer.i @@ -0,0 +1,12 @@ +%module template_default_pointer + +%inline %{ + +template +class B +{ +}; + +%} + +%template(B_d) B;