Remove non-MSRV implementation and interp-only options
[hiphop-php.git] / hphp / test / slow / inout / bad-trait-1.php
blobfb4d5c8c0af2b3483ca153085baaa6b24a42d7a1
1 <?hh
3 trait T {
4 function foo(inout $x) {}
7 interface I {
8 function foo(&$x);
11 class C implements I {
12 use T;