1--TEST--
2Test strict declaration being first operation only 006
3--EXTENSIONS--
4mbstring
5--INI--
6zend.multibyte=1
7--FILE--
8<?php
9declare(encoding="UTF-8");
10declare(strict_types=1);
11
12namespace Foo;
13
14var_dump(strlen("abc"));
15
16?>
17--EXPECT--
18int(3)
19