1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/bug63219.phpt
DanielEScherzer ea297654f4 Zend/*: fix a bunch of typos (GH-16017)
* Zend/*: fix a bunch of typos

* Zend/tests/try/try_catch_finally_005.phpt: update string length
2024-09-24 10:55:21 +02:00

19 lines
317 B
PHP

--TEST--
Bug #63219 (Segfault when aliasing trait method when autoloader throws exception)
--FILE--
<?php
trait TFoo {
public function fooMethod(){}
}
class C {
use TFoo {
Typo::fooMethod as tf;
}
}
echo "okey";
?>
--EXPECTF--
Fatal error: Could not find trait Typo in %sbug63219.php on line %d