Fix seg fault for global declarations declared erroneously without a name
This commit is contained in:
parent
4f235027f4
commit
b851e45e0a
3 changed files with 29 additions and 16 deletions
6
Examples/test-suite/errors/cpp_bad_global_memberptr.i
Normal file
6
Examples/test-suite/errors/cpp_bad_global_memberptr.i
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
%module xxx
|
||||
|
||||
struct Funcs {};
|
||||
|
||||
short (Funcs::* *)(bool) = 0;
|
||||
short (Funcs::* const*)(bool) = 0;
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
cpp_bad_global_memberptr.i:5: Error: Missing symbol name for global declaration
|
||||
cpp_bad_global_memberptr.i:6: Error: Missing symbol name for global declaration
|
||||
Loading…
Add table
Add a link
Reference in a new issue