1--TEST--
2Test strict declaration being first operation only 004
3--FILE--
4<?php
5declare(strict_types=1);
6
7namespace Foo {
8    function add1(int $arg): int {
9        return $arg + 1;
10    }
11}
12
13namespace {
14    var_dump(Foo\add1(123));
15}
16--EXPECT--
17int(124)
18