1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/benchmark/vm_ivar_get_unintialized.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
172 B
YAML
Raw Normal View History

prelude: |
class Example
def read
@uninitialized
end
end
obj = Example.new
benchmark:
vm_ivar_get_uninitialized: |
obj.read
loop_count: 30000000