xref: /php-src/ext/com_dotnet/tests/bug69939.phpt (revision 56f90492)
1--TEST--
2Bug #69939 (Casting object to bool returns false)
3--EXTENSIONS--
4com_dotnet
5--FILE--
6<?php
7var_dump((bool) new COM('WScript.Shell'));
8?>
9--EXPECT--
10bool(true)
11