summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug75370.phpt
blob: 5cc344e3f627e64460751de0e255904a6f9e7a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #75370 (Webserver hangs on valid PHP text)
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test()
{
    $success = true;
    $success = $success AND true;
    return $success;
}

var_dump(test());
?>
--EXPECT--
bool(true)