1--TEST--
2JIT SEND_VAR_EX fails on SHOULD_SEND_BY_REF checking
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7;opcache.jit_debug=257
8--EXTENSIONS--
9opcache
10--FILE--
11<?php
12namespace A;
13
14class A {
15    private $evalParameters;
16    public function evaluate() {
17        $this->evalParameters = array("a" => "okey");
18        extract($this->evalParameters, EXTR_SKIP);
19        echo $a;
20        return false;
21    }
22}
23
24$a = new A();
25
26$a->evaluate();
27?>
28--EXPECT--
29okey
30