mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
d30cd7d7e7
Closes GH-5590
27 lines
512 B
PHP
27 lines
512 B
PHP
--TEST--
|
|
FFI 018: Indirectly recursive structure
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--INI--
|
|
ffi.enable=1
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
FFI::cdef("struct X {struct X x[2];};");
|
|
echo "ok\n";
|
|
} catch (Throwable $e) {
|
|
echo get_class($e) . ": " . $e->getMessage()."\n";
|
|
}
|
|
try {
|
|
FFI::cdef("struct X {struct X *ptr[2];};");
|
|
echo "ok\n";
|
|
} catch (Throwable $e) {
|
|
echo get_class($e) . ": " . $e->getMessage()."\n";
|
|
}
|
|
?>
|
|
ok
|
|
--EXPECT--
|
|
FFI\ParserException: Incomplete struct "X" at line 1
|
|
ok
|
|
ok
|