1--TEST--
2#[\Deprecated]: Message with value unknown at compile time.
3--FILE--
4<?php
5
6define('MESSAGE', 'value-' . (random_int(1, 2) == 1 ? 'a' : 'b'));
7
8#[\Deprecated(MESSAGE)]
9function test() {
10}
11
12test();
13
14?>
15--EXPECTF--
16Deprecated: Function test() is deprecated, value-%c in %s on line %d
17