mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
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
|