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_get_only.phpt
2024-07-14 11:55:03 +02:00

16 lines
181 B
PHP

--TEST--
Interface may contain only set with no implementation
--FILE--
<?php
interface I {
public $prop { set; }
}
class A implements I {
public $prop;
}
?>
--EXPECTF--