xref: /PHP-7.4/ext/opcache/tests/opt/sccp_030.phpt (revision 61a38bb2)
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--SKIPIF--
9<?php require_once('skipif.inc'); ?>
10--FILE--
11<?php
12
13var_dump(is_string(sys_get_temp_dir()));
14
15?>
16--EXPECT--
17bool(true)
18