xref: /PHP-8.4/ext/opcache/tests/jit/gh15490.inc (revision b839c5f1)
1<?php
2
3function foo() {
4    bar();
5}
6
7function bar() {
8    echo 'Hello world!';
9}
10