xref: /php-src/Zend/tests/anon/gh15994.phpt (revision b436ef47)
1--TEST--
2Abstract function must be implemented
3--FILE--
4<?php
5
6abstract class ParentClass {
7    abstract public function f();
8}
9
10$o = new class extends ParentClass {};
11?>
12--EXPECTF--
13Fatal error: Class ParentClass@anonymous must implement 1 abstract method (ParentClass::f) in %sgh15994.php on line 7
14