summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bug60217a.phpt
blob: 62a35159553620353967204efb58a38fb8c8cccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Bug #60217 (Requiring the same method from different traits.)
--FILE--
<?php

trait T1 {
    public abstract function foo();
}

trait T2 {
    public abstract function foo();
}

class C {
    use T1, T2;

    public function foo() {
        echo "C::foo() works.\n";
    }
}

$o = new C;
$o->foo();

--EXPECTF--
C::foo() works.