In some cases the typecheck typemap would try to access the first element of an empty Tcl list. Fixes https://sourceforge.net/p/swig/bugs/1309/
7 lines
240 B
Tcl
7 lines
240 B
Tcl
|
|
if [ catch { load ./li_std_vector[info sharedlibextension] li_std_vector} err_msg ] {
|
|
puts stderr "Could not load shared object:\n$err_msg"
|
|
}
|
|
|
|
# # Regression test for bug fixed in SWIG 4.2.0.
|
|
if {[sum []] != 0} { error "bad vector sum" }
|