xref: /PHP-8.3/ext/spl/tests/fixedarray_024.phpt (revision b50315e7)
1--TEST--
2SPL: FixedArray: Bug GH-8041 (php 8.2.0-dev crashes with assertion for cloning/get_object_vars on non-empty SplFixedArray)
3--FILE--
4<?php
5$x = new SplFixedArray(1);
6$z = (array)$x;
7$y = clone $x;
8?>
9DONE
10--EXPECT--
11DONE
12