1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/lang/static_basic_002.phpt
2023-05-24 20:17:31 +02:00

12 lines
197 B
PHP

--TEST--
Multiple declarations of the same static variable
--FILE--
<?php
static $a = 10;
static $a = 11;
?>
--EXPECTF--
Fatal error: Duplicate declaration of static variable $a in %s on line %d