mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
9 lines
115 B
PHP
9 lines
115 B
PHP
<?php
|
|
function foo() {
|
|
return new class extends Bar {};
|
|
}
|
|
function bar() {
|
|
class Foo extends Bar {
|
|
}
|
|
}
|