1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/Zend/tests/parent_class_name_without_parent.phpt
2015-05-17 17:31:43 -05:00

26 lines
389 B
PHP

--TEST--
Getting parent class name when there is no parent generates an error
--FILE--
<?php
trait T {
public function f() {
var_dump(parent::class);
}
}
class C {
use T;
}
(new C)->f();
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot use "parent" when current class scope has no parent in %s:5
Stack trace:
#0 %s(%d): C->f()
#1 {main}
thrown in %s on line 5