haltCompilerOutermostScope.test-fail 178 B

12345678
  1. __halt_compiler can only be used from outermost scope
  2. -----
  3. <?php
  4. if (true) {
  5. __halt_compiler();
  6. }
  7. -----
  8. __halt_compiler() can only be used from the outermost scope on line 3