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