You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
truffleruby 22.3.0, like ruby 3.0.3, GraalVM CE Native [x86_64-darwin]
As per the title, MRI raises an IndexError if the value provided to the values_at method is out of bounds. Currently TruffleRuby returns [nil].
Struct.new('ValuesAt',:a,:b,:c,:d,:e,:f)struct=Struct::ValuesAt.new(1,2,3,4,5)pstruct.values_at(99)# => Should raise "offset 99 too large for struct(size:6) (IndexError)"
The text was updated successfully, but these errors were encountered:
truffleruby 22.3.0, like ruby 3.0.3, GraalVM CE Native [x86_64-darwin]
As per the title, MRI raises an IndexError if the value provided to the
values_at
method is out of bounds. Currently TruffleRuby returns[nil]
.The text was updated successfully, but these errors were encountered: