blob: 4235157b646e27aaa99c00ed23b975cc86b149e6 [file]
<?php
var_dump(new class {
public function testA() {
$this->testB();
}
private function testB() {
echo 'testB' . PHP_EOL;
}
});