xref
: /
php-src
/
Zend
/
tests
/
early_binding_unreachable.inc
(revision c19977d0)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<?php
2
var_dump(new B);
3
if (true) {
4
return;
5
}
6
class B extends A {}
7