1<?php declare(strict_types=1);
2
3function do_strict_call(Closure $fn) {
4    $fn("42");
5}
6