1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/ext/spl/tests/bug72884.phpt

11 lines
202 B
PHP

--TEST--
Bug #72884: isCloneable() on SplFileObject should return false
--FILE--
<?php
$x=new SplFileObject(__FILE__);
$r=new ReflectionObject($x);
var_dump($r->isCloneable());
--EXPECT--
bool(false)