- New tests related to #52098

This commit is contained in:
Felipe Pena 2010-06-16 23:33:01 +00:00
parent d596ea742a
commit 42c4bafbbd

View file

@ -0,0 +1,19 @@
--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