Add runtime tests for namespace_virtual_method, template_opaque, using_extend, using_inherit, using_pointers, using_private, and varargs_overload.
10 lines
202 B
OCaml
10 lines
202 B
OCaml
open Swig
|
|
open Using_pointers
|
|
|
|
let f = new_FooBar '()
|
|
try
|
|
ignore (f -> exception_spec (1)); assert false
|
|
with Failure _ -> ()
|
|
try
|
|
ignore (f -> exception_spec (2)); assert false
|
|
with Failure _ -> ()
|