summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/scalar_strict_declaration_placement_005.phpt
blob: b213bb11dd22af6f5b6040186e99f71bb7924c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Test strict declaration being first operation only 005
--FILE--
<?php

declare(strict_types=1);

namespace Foo;

var_dump(strlen("abc"));

?>
--EXPECT--
int(3)