blob: 8e9e118e0824b1076706e350b320f941bfc84961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--TEST--
ZE2 A class that inherits an abstract method is abstract
--FILE--
<?php
abstract class pass {
abstract function show();
}
abstract class fail extends pass {
}
$t = new fail();
$t = new pass();
echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot instantiate abstract class fail in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
|