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

abstract class abc {
}

class A {
    use abc;
}

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