mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
First pass at moving `Zend/tests/bug*` tests to existing sub directories Work towards GH-15631
17 lines
277 B
PHP
17 lines
277 B
PHP
--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===
|