adding more broken cases
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7741 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
4756a8628c
commit
a04ecfbfe3
4 changed files with 16 additions and 0 deletions
|
|
@ -39,5 +39,9 @@
|
|||
char *do_blah(Foo *f) {
|
||||
return f->blah();
|
||||
}
|
||||
|
||||
class ForwardClass;
|
||||
template <class C> class ForwardClassT;
|
||||
template<typename T1, typename T2> class PatchList;
|
||||
%}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ LIBPREFIX = lib
|
|||
|
||||
# Broken C++ test cases. (Can be run individually using make testcase.cpptest.)
|
||||
CPP_TEST_BROKEN += \
|
||||
constants \
|
||||
cpp_broken \
|
||||
namespace_union \
|
||||
nested_comment \
|
||||
|
|
|
|||
|
|
@ -23,3 +23,14 @@ class X {};
|
|||
|
||||
%template(X_1) X<1>;
|
||||
%template(X_m1) X<-1>;
|
||||
|
||||
|
||||
|
||||
// bug 1338527
|
||||
|
||||
|
||||
%inline %{
|
||||
|
||||
template<typename, typename> class PatchList;
|
||||
|
||||
%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue