1--TEST--
2#[\Deprecated]: Code is E_USER_DEPRECATED for functions.
3--FILE--
4<?php
5
6set_error_handler(function (int $errno, string $errstr, ?string $errfile = null, ?int $errline = null) {
7	var_dump($errno, E_USER_DEPRECATED, $errno === E_USER_DEPRECATED);
8});
9
10#[\Deprecated]
11function test() {
12}
13
14test();
15
16?>
17--EXPECT--
18int(16384)
19int(16384)
20bool(true)
21