From 165e7b181b8a238aa546bd78b0baef1312e7000f Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 20 Dec 2017 15:53:37 +0900 Subject: Fixed method look-up for `method_missing` in OP_SUPER; ref #3905 Method look-up for `OP_SUPER` should start from the superclass of the `target_class` but if it fails, the look-up for `method_missing` should start from the class of the receiver. The following code explains the case: ```ruby class Bar def foo super end end class Foo