mirror of
https://github.com/php/php-src.git
synced 2024-12-27 02:39:39 +08:00
16 lines
202 B
PHP
16 lines
202 B
PHP
--TEST--
|
|
A script with die() must end "normally"
|
|
--PHPDBG--
|
|
r
|
|
q
|
|
--EXPECTF--
|
|
[Successful compilation of %s]
|
|
prompt> [Script ended normally]
|
|
prompt>
|
|
--FILE--
|
|
<?php
|
|
|
|
(function($argv) {
|
|
die();
|
|
})($argv);
|