summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_005.phpt
blob: 7704375d6ef2be37fcf433fb7fae412aaab818c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Test possible constant naming regression on procedural scope
--FILE--
<?php

class Obj
{
    const return = 'yep';
}

const return = 'nope';

--EXPECTF--
Parse error: syntax error, unexpected 'return' (T_RETURN), expecting identifier (T_STRING) in %s on line 8