summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bugs/interfaces.phpt
blob: 39146f97a4af38dd78900a9b75cbc40bcb452d05 (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--
Parse error: syntax error, unexpected token "implements", expecting "{" in %s on line %d