I know you can't instance_exec a proc which is generated by Method#to_proc because it has its original instance's context. But, in such a case, raising ArgumentError would be the ideal behavior.
f=->(x){a+x}classAdefa1endendA.new.instance_exec(1,&f)# => 2classBdefb(x)a+xendendproc=B.new.method(:b).to_procA.new.instance_exec(1,&proc)# => undefined local variable or method `a' for #<B:0x00007fdaf30480a0> (NameError)
You wouldn't expect an instance_exec on that lambda to change the behavior of Method#call. So I think the current behavior is expected.
Note that it's not hard to change the behavior to raise an error in this case (and other cases like module_exec). However, changing the behavior would result in significant backwards compatibility issues. I tried a commit that raises ArgumentError in such a case: https://github.com/jeremyevans/ruby/commit/3e2db2f01281f2335c638142223f8b24531826bd. However, it broke quite a few tests: https://github.com/jeremyevans/ruby/runs/3283493124. Some of the breakage may be due to implementation choice, but I checked and at least some of the breakage is unavoidable as the tests expect to pass procs created by Method#to_proc to instance_exec (e.g. test_instance_exec_define_method_kwsplat).
As I don't think this is a bug, I'm switching this to a feature request.