xref: /PHP-8.0/ext/opcache/tests/bug79475.phpt (revision a1eaaa69)
1--TEST--
2Bug #79475 ([JIT] func_get_args() assertion violation)
3--SKIPIF--
4<?php require_once('skipif.inc'); ?>
5--FILE--
6<?php
7function foo() {
8    $args = func_get_args();
9    $args[] = "bar";
10}
11foo();
12echo "done\n";
13?>
14--EXPECT--
15done
16