mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
12 lines
282 B
PHP
12 lines
282 B
PHP
--TEST--
|
|
Serialization of backtick literal is incorrect
|
|
--INI--
|
|
zend.assertions=1
|
|
--FILE--
|
|
<?php
|
|
|
|
assert_options(ASSERT_WARNING);
|
|
assert(false && `echo -n ""`);
|
|
--EXPECTF--
|
|
Warning: assert(): assert(false && `echo -n ""`) failed in %s%east_serialize_backtick_literal.php on line %d
|