summaryrefslogtreecommitdiff
path: root/Zend/tests/bug80126_2.phpt
blob: 707d1b5a457333af0715855eee6a6d42ded1349e (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
27
--TEST--
Bug #80126: Covariant return types failing compilation (variation 2)
--FILE--
<?php

interface I {
    public function method(): I;
}

abstract class A implements I {
    public function method(): I {
        return new static();
    }
}

class C extends A { }

interface I2 { }

class C2 extends C implements I2 {
    public function method(): C2 { }
}

?>
===DONE===
--EXPECT--
===DONE===