mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
12 lines
197 B
PHP
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
|