1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00
Files
archived-php-src/Zend/tests/dynamic_call_001.phpt
T
Felipe Pena 3d7013045b - New tests
2008-05-11 03:15:13 +00:00

18 lines
245 B
PHP

--TEST--
Testing dynamic call to constructor (old-style)
--FILE--
<?php
class foo {
public function foo() {
}
}
$a = 'foo';
$a::$a();
?>
--EXPECTF--
Fatal error: Non-static method foo::foo() cannot be called statically in %s on line %d