php-src/Zend/tests/inter_03.phpt

20 lines
205 B
Plaintext
Raw Normal View History

2008-03-12 13:01:59 +00:00
--TEST--
Testing interface constants with inheritance
--FILE--
<?php
interface a {
2020-02-03 21:52:20 +00:00
const b = 2;
2008-03-12 13:01:59 +00:00
}
interface b extends a {
2020-02-03 21:52:20 +00:00
const c = self::b;
2008-03-12 13:01:59 +00:00
}
var_dump(b::c, a::b);
?>
--EXPECT--
int(2)
int(2)