summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/error_004.phpt
blob: d7ff695e047b32a811e451def18ca6c06bb3aabd (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