blob: afa9e11e4dc492bae875c627fa90e16a125201cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
Bug #60145 (Usage of trait's use statement inside interfaces not properly checked.)
--FILE--
<?php
trait foo {
}
interface MyInterface {
use foo;
public function b();
}
?>
--EXPECTF--
Fatal error: Cannot use traits inside of interfaces. foo is used in MyInterface in %s on line %d
|