swig/Examples/test-suite/ocaml/extend_template_runme.ml
Zackery Spytz 5b6c57e6ae [OCaml] Runtime tests for constructor_rename, cpp_nodefault and some others
Add runtime tests for constructor_rename, cpp_nodefault, extend,
extend_special_variables, extend_template, extern_c, and
global_ns_arg.
2019-01-13 22:44:31 -07:00

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);
;;