10 lines
84 B
PHP
10 lines
84 B
PHP
<?php
|
|
|
|
namespace Bug74922;
|
|
|
|
const FOO = 'foo';
|
|
|
|
trait T1 {
|
|
public $var = FOO;
|
|
}
|