Created
May 15, 2009 16:11
-
-
Save jnthn/112278 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class A { | |
| method b { | |
| die "OH NOES I HAS A FAIL" | |
| } | |
| } | |
| sub bar { | |
| A.new.b; | |
| } | |
| sub foo { | |
| bar() | |
| } | |
| foo(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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