summaryrefslogtreecommitdiff
path: root/tests/classes/final_ctor3.phpt
blob: 3a61ecf902355ca3275e9569031cf622c421b694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Ensure implicit final inherited old-style constructor cannot be overridden.
--FILE--
<?php
  class A {
      final function A() { }
  }
  class B extends A {
      function A() { }
  }
?>
--EXPECTF--
Fatal error: Cannot override final method A::A() in %s on line %d