xref: /php-src/Zend/tests/frameless_bug_001.phpt (revision 6db06a7c)
1--TEST--
2Frameless bug 001
3--FILE--
4<?php
5
6namespace NS;
7
8class Test {
9    public function test() {
10        return preg_match('foo', 'bar');
11    }
12}
13
14$test = new Test();
15$test->test();
16
17?>
18--EXPECTF--
19Warning: preg_match(): Delimiter must not be alphanumeric, backslash, or NUL byte in %s on line %d
20