503f75d08b
These names don't make sense now that we run both suites the same way.
15 linhas
120 B
PHP
15 linhas
120 B
PHP
<?php
|
|
|
|
class B {
|
|
protected $p;
|
|
}
|
|
|
|
class C extends B {}
|
|
|
|
function main() {
|
|
$o = new C;
|
|
var_dump($o->p);
|
|
}
|
|
|
|
main();
|