mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
12 lines
242 B
PHP
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)
|