summaryrefslogtreecommitdiff
path: root/Zend/tests/short_echo_as_identifier.phpt
blob: 7fc1684861889f860d61a3d74d7e5b521b460378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
<?= cannot be used as an identifier
--FILE--
<?php
trait T {
    public function x() {}
}
class C {
    use T {
        x as y?><?= as my_echo;
    }
}
?>
--EXPECTF--
Parse error: Cannot use "<?=" as an identifier in %s on line %d