[Go] Fix member variables in base classes to handle CWRAP_NATURAL_VAR
correctly. Add a test case for the problem. Fixes #339.
This commit is contained in:
parent
c6b3088e58
commit
11d8403c3c
4 changed files with 47 additions and 3 deletions
|
|
@ -246,6 +246,7 @@ CPP_TEST_CASES += \
|
|||
ignore_parameter \
|
||||
import_nomodule \
|
||||
inherit \
|
||||
inherit_member \
|
||||
inherit_missing \
|
||||
inherit_same_name \
|
||||
inherit_target_language \
|
||||
|
|
|
|||
15
Examples/test-suite/go/inherit_member_runme.go
Normal file
15
Examples/test-suite/go/inherit_member_runme.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package main
|
||||
|
||||
import wrap "./inherit_member"
|
||||
|
||||
func main() {
|
||||
s := wrap.NewChild()
|
||||
s.SetPvar("p")
|
||||
s.SetCvar("c")
|
||||
if s.GetPvar() != "p" {
|
||||
panic(s.GetPvar())
|
||||
}
|
||||
if s.GetCvar() != "c" {
|
||||
panic(s.GetCvar())
|
||||
}
|
||||
}
|
||||
17
Examples/test-suite/inherit_member.i
Normal file
17
Examples/test-suite/inherit_member.i
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// Based on https://github.com/swig/swig/issues/339 .
|
||||
|
||||
%module inherit_member
|
||||
|
||||
%include <std_string.i>
|
||||
|
||||
%inline %{
|
||||
|
||||
struct parent {
|
||||
std::string pvar;
|
||||
};
|
||||
|
||||
struct child : public parent {
|
||||
std::string cvar;
|
||||
};
|
||||
|
||||
%}
|
||||
Loading…
Add table
Add a link
Reference in a new issue