php-src/ext/ffi/tests/018.phpt
2020-07-10 21:05:28 +02:00

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