php-src/tests/classes/final_ctor3.phpt

14 lines
275 B
Plaintext
Raw Normal View History

--TEST--
Ensure implicit final inherited old-style constructor cannot be overridden.
--FILE--
<?php
class A {
final function A() { }
}
class B extends A {
2008-03-17 14:59:16 +00:00
function A() { }
}
?>
--EXPECTF--
2008-03-17 14:59:16 +00:00
Fatal error: Cannot override final method A::A() in %s on line %d