mirror of
https://github.com/php/php-src.git
synced 2026-04-28 02:33:17 +02:00
a50adda19e
* ext/gmp: Make GMP class final RFC: https://wiki.php.net/rfc/gmp-final * Update UPGRADING Co-authored-by: Peter Kokot <peterkokot@gmail.com> --------- Co-authored-by: Peter Kokot <peterkokot@gmail.com>
13 lines
175 B
PHP
13 lines
175 B
PHP
--TEST--
|
|
Cannot extend GMP class
|
|
--EXTENSIONS--
|
|
gmp
|
|
--FILE--
|
|
<?php
|
|
|
|
class T extends GMP {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class T cannot extend final class GMP in %s on line %d
|