ru_php/ext/reflection/tests/gh11937_1.inc

14 lines
204 B
PHP

<?php
#[Attribute]
class Attr {
public function __construct(public $value) {}
}
class Foo {
public function __construct(public $value) {}
}
#[Attr(new Foo(TestEnum::CASES))]
function test() {}