Project

General

Profile

Actions

Bug #20442

closed

Printing class variable inconsistent when using nested hashes

Added by k776 (Kieran Pilkington) 26 days ago. Updated 26 days ago.

Status:
Rejected
Assignee:
-
Target version:
-
[ruby-core:117640]

Description

See attached test.rb. I have a class with a class variable. The idea is simple, increment the value and then print out the resulting class var.

Mock1
0
1

Mock2
{}
{"a"=>1}

Mock3
{}
{"a"=>1}

Mock4
{}
{}

Mock1 through Mock3 are working as expected. But Mock4 does not, it outputs a blank hash, rather than the expected: {"a"=>{"a"=>1}}

The value is being set. If I replace the print method with @val['a']['a'] is outputs the number 1 as expected.


Files

test.rb (820 Bytes) test.rb k776 (Kieran Pilkington), 04/22/2024 06:05 AM
Actions

Also available in: Atom PDF

Like0
Like0