Move test/slow/rx into test/slow/coeffects/rx
[hiphop-php.git] / hphp / test / slow / coeffects / rx / is_enabled_bad3.php
blob36420e848cb14c1cf455e62954f60b120fd3099d
1 <?hh
3 function test()[rx] {
4 if (!Rx\IS_ENABLED) {
5 echo "disabled\n";
6 return 0;
7 } else {
8 return 0;
12 <<__EntryPoint>>
13 function main() {
14 var_dump(test());