1--TEST--
2Manual instantiation of com_safearray_proxy is not allowed
3--EXTENSIONS--
4com_dotnet
5--FILE--
6<?php
7try {
8    new com_safearray_proxy();
9} catch (Error $e) {
10    echo $e->getMessage(), PHP_EOL;
11}
12?>
13--EXPECT--
14Cannot directly construct com_safeproxy_array; it is for internal usage only
15