blob: f63fb9f56ab27aac01556f213044ce335b96fb64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Function declaration should not be allowed before namespace declaration
--FILE--
<?php
function foo() {}
namespace Bar;
?>
--EXPECTF--
Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in %s on line %d
|