mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
17 lines
522 B
PHP
17 lines
522 B
PHP
--TEST--
|
|
Conflicting constants in a trait and another trait using it with different finality should result in a fatal error, since this indicates that the code is incompatible.
|
|
--FILE--
|
|
<?php
|
|
|
|
trait Trait1 {
|
|
public const Constant = 123;
|
|
}
|
|
|
|
trait Trait2 {
|
|
use Trait1;
|
|
public const Constant = 456;
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Trait2 and Trait1 define the same constant (Constant) in the composition of Trait2. However, the definition differs and is considered incompatible. Class was composed in %s on line %d
|