1--TEST--
2Test breakpoint into function context
3--PHPDBG--
4b breakpoints_005.php:4
5r
6ev $bar
7c
8q
9--EXPECTF--
10[Successful compilation of %s]
11prompt> [Breakpoint #0 added at %s:4]
12prompt> [Breakpoint #0 at %s:4, hits: 1]
13>00004: 	var_dump($bar);
14 00005: }
15 00006:
16prompt> test
17prompt> string(4) "test"
18[Script ended normally]
19prompt>
20--FILE--
21<?php
22
23function foo($bar) {
24	var_dump($bar);
25}
26
27foo("test");
28