Remove non-MSRV implementation and interp-only options
[hiphop-php.git] / hphp / test / slow / inout / bad-call-15.php
blobd6032e9fa1e1bd9eb59ee04860271f716586bb6c
1 <?hh
3 function foo(inout $a) {}
5 class Herp {
6 function derp() {
7 foo(inout $this[12]);
11 (new Herp)->derp();