summaryrefslogtreecommitdiff
path: root/Zend/tests/class_alias_014.phpt
blob: 7c4bdb9b0478cb1f1a64e7613c8ec1bec8675ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Testing creation of alias to class name without namespace prefix
--FILE--
<?php

namespace foo;

class bar {
}

class_alias('bar', 'baz');

?>
--EXPECTF--
Warning: Class 'bar' not found in %s on line %d