mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
assert('Object#instance_exec') do
|
|
class KlassWithSecret
|
|
def initialize
|
|
@secret = 99
|
|
end
|
|
end
|
|
k = KlassWithSecret.new
|
|
assert_equal 104, k.instance_exec(5) {|x| @secret+x }
|
|
end
|