Files
ANSLibs/swig-4.3.0/Examples/test-suite/ocaml/catches_strings_runme.ml

15 lines
301 B
OCaml
Raw Normal View History

open Swig
open Catches_strings
let _ =
try
ignore (_StringsThrower_charstring (C_void)); assert false
with Failure s ->
assert (s = "charstring message")
let _ =
try
ignore (_StringsThrower_stdstring (C_void)); assert false
with Failure s ->
assert (s = "stdstring message")