summaryrefslogtreecommitdiff
path: root/Zend/tests/class_alias_004.phpt
blob: b7dbabdeb09944cb5e6a06f93ac3139cfbb9e4dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Testing creation of alias using an existing interface name
--FILE--
<?php

class foo { }

interface test { }


class_alias('foo', 'test');

?>
--EXPECTF--
Warning: Cannot redeclare class test in %s on line %d