summaryrefslogtreecommitdiff
path: root/Zend/tests/bug76451.phpt
blob: ad72056e4b465312892b2dd321ab9d3fc246127d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #76451: Aliases during inheritance type checks affected by opcache
--FILE--
<?php
require __DIR__ . "/bug76451.inc";

class A {
    public function test(Foo $foo) {}
}
class B extends A {
    public function test(Bar $foo) {}
}
?>
===DONE===
--EXPECT--
===DONE===