summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/error_004.phpt
blob: 5bfcc263cc86fa9e509a146905e020d38f38e8e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Trying to use a class as trait
--FILE--
<?php

class abc {
}

class A {
	use abc;
}

?>
--EXPECTF--
Fatal error: A cannot use abc - it is not a trait in %s on line %d