1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/self_instanceof_outside_class.phpt
2020-07-10 21:05:28 +02:00

18 lines
268 B
PHP

--TEST--
instanceof self outside a class
--FILE--
<?php
$fn = function() {
try {
new stdClass instanceof self;
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
};
$fn();
?>
--EXPECT--
Cannot access "self" when no class scope is active