Add runtime tests for constructor_rename, cpp_nodefault, extend, extend_special_variables, extend_template, extern_c, and global_ns_arg.
8 lines
151 B
OCaml
8 lines
151 B
OCaml
open Swig
|
|
open Extend_template
|
|
|
|
let f = new_Foo_0 '()
|
|
let _ =
|
|
assert((f -> "test1" (37) as int) = 37);
|
|
assert((f -> "test2" (42) as int) = 42);
|
|
;;
|