From: "Jacques Le Normand" <rathereasy@gmail.com>
To: caml-list@yquem.inria.fr
Subject: Segmentation fault
Date: Mon, 2 Jun 2008 23:09:18 -0400 [thread overview]
Message-ID: <f74178430806022009h6960bfc0tb5db497e4201a4af@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2040 bytes --]
Hello caml-list,
I'm encountering a segfault on ocaml 3.09
The test case seems long, but if I remove any line from it it stops
segfaulting. The strangest thing is that get_right_sibling_specific is
called, though it appears nowhere. If you change it's name, the segfault
dissapears. Any help would be appreciated!
here's the code:
class virtual bottle_environment =
object
method virtual gladiators : string list
method virtual bottles : bottle list
end
and virtual bottle =
object
method virtual action : (unit -> bottle_environment option)
end
type outer_space = {
foo : int list
}
let empty_outer_space =
{
foo = [];
}
class virtual expression =
object
method virtual get_silly_bottle : bottle
end
class virtual expression_skel =
object(self)
inherit expression
method bambam = empty_outer_space
method get_silly_bottle =
(object
inherit bottle
method action () =
Some (object
method gladiators =
print_endline "entering bottles";
ignore (self#bambam.foo);
["enter "]
method bottles =
[]
end)
end)
end
class virtual baggy_expression_skel =
object(self)
inherit expression_skel
method get_bottle_environment =
object
method gladiators = ([]:string list)
method bottles = [self#get_silly_bottle]
end
end
class virtual papa_expression_skel =
object(self)
method get_right_sibling_specific = print_endline "im being called, though
I shouldn't" ; (None:expression option)
inherit expression
end
class papa_baggy_expression =
object(self)
inherit baggy_expression_skel
inherit papa_expression_skel
end
class top_baggy_expression =
object(self)
inherit baggy_expression_skel
end
let _ =
let body_expression = new top_baggy_expression in
let e = new papa_baggy_expression in
ignore ((body_expression#get_bottle_environment)#bottles);
let sugg = e#get_silly_bottle in
match sugg#action () with
| None -> ()
| Some y ->
ignore (y#gladiators)
[-- Attachment #2: Type: text/html, Size: 3356 bytes --]
next reply other threads:[~2008-06-03 3:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-03 3:09 Jacques Le Normand [this message]
2008-06-03 14:08 ` [Caml-list] " Berke Durak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f74178430806022009h6960bfc0tb5db497e4201a4af@mail.gmail.com \
--to=rathereasy@gmail.com \
--cc=caml-list@yquem.inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox