Annotation of embedaddon/php/Zend/tests/class_alias_009.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Testing interface declaration using the original and alias class name
                      3: --FILE--
                      4: <?php
                      5: 
                      6: interface a { }
                      7: 
                      8: class_alias('a', 'b');
                      9: 
                     10: interface c extends a, b { }
                     11: 
                     12: ?>
                     13: --EXPECTF--
                     14: Fatal error: Class c cannot implement previously implemented interface a in %s on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>