jfredett (Joe Fredette)
- Login: jfredett
- Email: jfredett@gmail.com
- Registered on: 06/19/2012
- Last sign in: 09/18/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/18/2013
-
10:13 PM Ruby Bug #8920: Exception when using a variable defined in end-of-line if statement
- Excellent, thanks charliesome for the fast response, and nobu for fixing my formatting. I'll report back to the rubinius project that this is, indeed, inconsistent behavior.
-
10:13 PM Ruby Bug #8920: Exception when using a variable defined in end-of-line if statement
- -- accidental doublepost --
-
09:41 PM Ruby Bug #8920 (Rejected): Exception when using a variable defined in end-of-line if statement
- =begin
The following code raises an exception on each MRI version (exact ((%`ruby -v`%)) output attached at the end of this post):
class Test
def foo
puts "No Exception!"
end
end
begin
t.foo if t = Test.new
...