summaryrefslogtreecommitdiff
path: root/tests/classes/bug75765.phpt
blob: 650ca65e9630b2e45cbf08b1d419f4e6c6d9f87f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Ensure that extending of undefined class throws the exception
--FILE--
<?php

try {
	class A extends B {}
} catch (Error $e) {
	var_dump(class_exists('A'));
	var_dump(class_exists('B'));
	throw $e;
}

?>
--EXPECTF--
bool(false)
bool(false)

Fatal error: Uncaught Error: Class 'B' not found in %s:%d
Stack trace:
#0 {main}
  thrown in %s on line %d