s = 'hello'
if s =~ /(?<mygroup>he)/
puts mygroup
puts mygroup # => NameError: undefined local variable or method `mygroup' for main:Object
end