summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_009.phpt
blob: c1fd1fb72cf123a49770c52e5b32ebc908a6d58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Test to check regressions on use statements and lexer state
--FILE--
<?php

use A\B\C\D;

class Foo
{
    private static $foo;

}

echo PHP_EOL, "Done", PHP_EOL;
?>
--EXPECT--
Done