1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/property_hooks/interface_final_prop.phpt
2024-07-14 11:55:03 +02:00

11 lines
203 B
PHP

--TEST--
Cannot declare final property in interface
--FILE--
<?php
interface I {
final public $prop { get; set; }
}
?>
--EXPECTF--
Fatal error: Property in interface cannot be final in %s on line %d