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