To reproduce: :RInlineTemp executed on following code (cursor on any x) ``` x = 5 y = x and z = x ``` will produce ``` y = 5 and z = x ``` instead of ``` y = 5 and z = 5 ```