mirror of
https://github.com/php/php-src.git
synced 2026-04-02 05:32:28 +02:00
16 lines
238 B
PHP
16 lines
238 B
PHP
--TEST--
|
|
Bug #78563: parsers should not be extendable
|
|
--EXTENSIONS--
|
|
xml
|
|
--FILE--
|
|
<?php
|
|
|
|
class Dummy extends Xmlparser {
|
|
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Fatal error: Class Dummy may not inherit from final class (XMLParser) in %s on line %d
|