summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/language018.phpt
blob: 169cb50c6b07c1ffcaf4fa3198f1001d9a077178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
abstract alias
--FILE--
<?php
trait T1 {
	function foo() {}
}
class C1 {
	use T1 {
		T1::foo as abstract;
	}
}
?>
--EXPECTF--
Fatal error: Cannot use 'abstract' as method modifier in %s on line %d