1--TEST--
2#[\Deprecated]: Message contains NUL bytes.
3--FILE--
4<?php
5
6#[\Deprecated("Here is a NUL \x00 Byte")]
7function test() {
8}
9
10test();
11
12?>
13--EXPECTF--
14Deprecated: Function test() is deprecated, Here is a NUL %0 Byte in %s on line %d
15