summaryrefslogtreecommitdiff
path: root/Zend/tests/self_class_const_outside_class.phpt
blob: 7a1f989a55340741ef9e5c0af6c1314769d1e347 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Accessing self::FOO in a free function
--FILE--
<?php
function test() {
    var_dump(self::FOO);
}
?>
--EXPECTF--
Fatal error: Cannot use "self" when no class scope is active in %s on line %d