1--TEST--
2strict_types=1 code including explicitly strict_types=0 code
3--FILE--
4<?php
5
6declare(strict_types=1);
7
8// file that's explicitly weak
9require 'strict_include_explicit_weak_2.inc';
10
11// calls within that file should stay weak, despite being included by strict fille
12?>
13--EXPECT--
14Success!
15