1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/ext/com_dotnet/tests/bug69939.phpt
2018-10-14 12:07:20 -03: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)