1--TEST--
2Undefined var in frameless call
3--FILE--
4<?php
5set_error_handler(function ($errno, $errstr) {
6    throw new Exception($errstr);
7});
8function test() {
9    strpos($foo, 'o');
10}
11try {
12    test();
13} catch (Exception $e) {
14    echo $e->getMessage(), "\n";
15}
16?>
17--EXPECT--
18Undefined variable $foo
19