1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/com_dotnet/tests/bug69939.phpt
2018-10-14 19:45:12 +02:00

12 lines
242 B
PHP

--TEST--
Bug #69939 (Casting object to bool returns false)
--SKIPIF--
<?php
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
--FILE--
<?php
var_dump((bool) new COM('WScript.Shell'));
?>
--EXPECT--
bool(true)