
| Path : /usr/src/php/ext/pdo/tests/ |
| Current File : //usr/src/php/ext/pdo/tests/pdo_037.phpt |
--TEST--
Crash when calling a method of a class that inherits PDOStatement
--SKIPIF--
<?php
if (!extension_loaded('pdo')) die('skip');
?>
--FILE--
<?php
class MyStatement extends PDOStatement
{
}
$obj = new MyStatement;
var_dump($obj->foo());
?>
--EXPECTF--
Fatal error: Call to undefined method MyStatement::foo() in %s on line %d