mirror of
https://github.com/php/php-src.git
synced 2026-04-17 13:01:02 +02:00
10 lines
84 B
PHP
10 lines
84 B
PHP
<?php
|
|
|
|
namespace Bug74922;
|
|
|
|
const FOO = 'foo';
|
|
|
|
trait T1 {
|
|
public $var = FOO;
|
|
}
|