diff options
author | Felipe Pena <felipe@php.net> | 2010-06-16 23:33:01 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-06-16 23:33:01 +0000 |
commit | 13b692e4c967f00ce1fc34093821135281f8af7a (patch) | |
tree | c7179ac5177be6b48613f8efa5766b1f673c4528 | |
parent | a7210008db8e24100bbe2fd8e3e4630571a713ce (diff) | |
download | php-git-13b692e4c967f00ce1fc34093821135281f8af7a.tar.gz |
- New tests related to #52098
-rw-r--r-- | ext/pdo/tests/pdo_037.phpt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/pdo/tests/pdo_037.phpt b/ext/pdo/tests/pdo_037.phpt new file mode 100644 index 0000000000..a0ead4b75f --- /dev/null +++ b/ext/pdo/tests/pdo_037.phpt @@ -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 |