Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created May 15, 2009 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnthn/112278 to your computer and use it in GitHub Desktop.
Save jnthn/112278 to your computer and use it in GitHub Desktop.
class A {
method b {
die "OH NOES I HAS A FAIL"
}
}
sub bar {
A.new.b;
}
sub foo {
bar()
}
foo();
OH NOES I HAS A FAIL
at method A::b line 3 of file <unknown>
called from sub bar line 8 of file <unknown>
called from sub foo line 12 of file <unknown>
called from Main line 15 of file <unknown>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment