assign_to_obj_002.phpt 211 B

123456789101112
  1. --TEST--
  2. Assign to $this leaks when $this not defined
  3. --FILE--
  4. <?php
  5. try {
  6. $this->a = new stdClass;
  7. } catch (Error $e) { echo $e->getMessage(), "\n"; }
  8. ?>
  9. --EXPECT--
  10. Using $this when not in object context