xref: /php-src/ext/opcache/tests/opt/sccp_030.phpt (revision e9f783fc)
1--TEST--
2SCCP 030: TYPE_CHECK inferred from type inference info
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.optimization_level=-1
7opcache.opt_debug_level=0
8--EXTENSIONS--
9opcache
10--FILE--
11<?php
12
13var_dump(is_string(sys_get_temp_dir()));
14
15?>
16--EXPECT--
17bool(true)
18