13 lines
241 B
PHP
13 lines
241 B
PHP
--TEST--
|
|
Bug #78543 (is_callable() on FFI\CData throws Exception)
|
|
--EXTENSIONS--
|
|
ffi
|
|
--FILE--
|
|
<?php
|
|
$ffi = FFI::cdef(' struct test { int dummy; }; ');
|
|
$test = $ffi->new('struct test');
|
|
var_dump(is_callable($test));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|