1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/frameless_bug_001.phpt
2024-03-07 20:11:27 +01:00

20 lines
300 B
PHP

--TEST--
Frameless bug 001
--FILE--
<?php
namespace NS;
class Test {
public function test() {
return preg_match('foo', 'bar');
}
}
$test = new Test();
$test->test();
?>
--EXPECTF--
Warning: preg_match(): Delimiter must not be alphanumeric, backslash, or NUL byte in %s on line %d