summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bugs/interfaces.phpt
blob: 486bda7efb38f89536c70b73b536a345a328c48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Make sure trait does not implement an interface.
--FILE--
<?php
error_reporting(E_ALL);

interface MyInterface {
	public function a();
}

trait THello implements MyInterface {
  public function a() {
    echo 'A';
  }
}

?>
--EXPECTF--	
Fatal error: Cannot use 'MyInterface' as interface on 'THello' since it is a Trait in %s on line %d