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