1--TEST--
2Test strict declaration being first operation only 003
3--FILE--
4hi<?php
5
6declare(strict_types=1);
7var_dump(strlen(32));
8
9?>
10--EXPECTF--
11Fatal error: strict_types declaration must be the very first statement in the script in %s on line %d
12