summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/opcache/tests/preload_013.phpt18
-rw-r--r--ext/opcache/tests/preload_nested_function.inc7
2 files changed, 25 insertions, 0 deletions
diff --git a/ext/opcache/tests/preload_013.phpt b/ext/opcache/tests/preload_013.phpt
new file mode 100644
index 0000000000..f6387c08e1
--- /dev/null
+++ b/ext/opcache/tests/preload_013.phpt
@@ -0,0 +1,18 @@
+--TEST--
+Nested function definition
+--INI--
+opcache.enable=1
+opcache.enable_cli=1
+opcache.optimization_level=-1
+opcache.preload={PWD}/preload_nested_function.inc
+opcache.interned_strings_buffer=0
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
+--FILE--
+<?php
+test();
+test2();
+?>
+===DONE===
+--EXPECT--
+===DONE===
diff --git a/ext/opcache/tests/preload_nested_function.inc b/ext/opcache/tests/preload_nested_function.inc
new file mode 100644
index 0000000000..534e81348d
--- /dev/null
+++ b/ext/opcache/tests/preload_nested_function.inc
@@ -0,0 +1,7 @@
+<?php
+
+function test()
+{
+ function test2() { }
+}
+