xref
: /
php-src
/
ext
/
opcache
/
tests
/
jit
/
gh15490.inc
(revision b839c5f1)
Home
History
Annotate
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<?php
2
3
function foo() {
4
bar();
5
}
6
7
function bar() {
8
echo 'Hello world!';
9
}
10