aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/ocaml/typedef_inherit_runme.ml
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/ocaml/typedef_inherit_runme.ml')
-rw-r--r--Examples/test-suite/ocaml/typedef_inherit_runme.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Examples/test-suite/ocaml/typedef_inherit_runme.ml b/Examples/test-suite/ocaml/typedef_inherit_runme.ml
index 6352fd4ad..a5feb7c3f 100644
--- a/Examples/test-suite/ocaml/typedef_inherit_runme.ml
+++ b/Examples/test-suite/ocaml/typedef_inherit_runme.ml
@@ -7,5 +7,6 @@ let _ =
assert (_do_blah (b) as string = "Bar::blah");
let c = new_Spam '() and d = new_Grok '() in
assert (_do_blah2 (c) as string = "Spam::blah");
- assert (_do_blah2 (d) as string = "Grok::blah")
+ assert (_do_blah2 (d) as string = "Grok::blah");
+ assert (d -> far() as string = "Spam::far")
;;