1--TEST--
2Test strict declaration being first operation only 005
3--FILE--
4<?php
5
6declare(strict_types=1);
7
8namespace Foo;
9
10var_dump(strlen("abc"));
11
12?>
13--EXPECT--
14int(3)
15