summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41640.phpt
blob: 5bfc6f34729d204fd109f8f7d76f14fb54d33511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #41640 (get_class_vars produces error on class constants)
--FILE--
<?php
class foo {
        const FOO = 1;
        public $x = self::FOO;
}

var_dump(get_class_vars("foo"));
?>
--EXPECT--
array(1) {
  ["x"]=>
  int(1)
}