binh (binh chau)
- Login: binh
- Registered on: 11/02/2025
- Last sign in: 11/02/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/03/2025
-
12:03 AM Ruby Bug #21662: Variables other than those in the conditional score are replaced.
- nobu (Nobuyoshi Nakada) wrote in #note-1:
> I try to guesstimate your intension by telepathy.
> ...
It looks like a trap.
11/02/2025
-
07:17 AM Ruby Bug #21662 (Feedback): Variables other than those in the conditional score are replaced.
- ```ruby
class Bar
attr_accessor :name
end
class Foo
attr_accessor :bar
def initialize(bar=nil)
@bar = bar || Bar.new
end
def bug!
if !bar.is_a?(Bar)
bar = ''
elsif bar.name == 'bar'
end
...