xref: /PHP-8.4/Zend/tests/errmsg_028.phpt (revision 34325c5e)
1--TEST--
2errmsg: cannot use "self" as class name
3--FILE--
4<?php
5
6class self {
7}
8
9echo "Done\n";
10?>
11--EXPECTF--
12Fatal error: Cannot use "self" as a class name as it is reserved in %s on line %d
13