git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12643 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
213 B
Python
11 lines
213 B
Python
import li_std_map_member
|
|
|
|
a = li_std_map_member.mapita()
|
|
a[1] = li_std_map_member.TestA()
|
|
|
|
if (a[1].i != 1) :
|
|
raise RuntimeError("a[1] != 1")
|
|
|
|
a[1].i = 2
|
|
if (a[1].i != 2) :
|
|
raise RuntimeError("a[1] != 2")
|