mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
44cd74b624
Closes GH-8810 Closes GH-8818
17 lines
272 B
PHP
17 lines
272 B
PHP
--TEST--
|
|
GH-8810: Fix reported line number of multi-line assert call
|
|
--FILE--
|
|
<?php
|
|
|
|
assert(
|
|
false,
|
|
);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught AssertionError: assert(false) in %s:3
|
|
Stack trace:
|
|
#0 %s(3): assert(false, 'assert(false)')
|
|
#1 {main}
|
|
thrown in %s on line 3
|