summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/scalar_strict_declaration_placement_005.phpt
blob: 3228c03fe5a7f97cb32e36c8948793894a7b77b6 (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"));

?>
--EXPECTF--
int(3)