summaryrefslogtreecommitdiff
path: root/Zend/tests/use_const/shadow_core.phpt
blob: 55dc03df407482b63bda7132d12336441c7948d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
shadowing a global core constant with a local version
--FILE--
<?php

require 'includes/foo_php_version.inc';

use const foo\PHP_VERSION;

var_dump(PHP_VERSION);
echo "Done\n";

?>
--EXPECT--
int(42)
Done