summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_009.phpt
blob: 6b14c33081bdb34158eb2578b7a81fb083ee84b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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