1--TEST--
2Bug #80096: Segmentation fault with named arguments in nested call
3--FILE--
4<?php
5
6function println($arg) {
7 echo $arg, "\n";
8}
9
10println(htmlentities("The < character is encoded as <", double_encode: false));
11
12?>
13--EXPECT--
14The < character is encoded as <
15