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