blob: eb3a89f67801d8d8cbe6e89c65ac03e06eff3e06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Using $this when out of context
--FILE--
<?php
try {
$this->a = 1;
} catch (Exception $e) {
}
?>
--EXPECTF--
Fatal error: Using $this when not in object context in %s on line %d
|