summaryrefslogtreecommitdiff
path: root/Zend/tests/bug40621.phpt
blob: 5ed16bd173fe37ca9b88c045b166f9d02b62dd25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--TEST--
Bug #40621 (Crash when constructor called inappropriately (statically))
--FILE--
<?php

class Foo {
	private function __construct() { }
	function get() {
		self::__construct();
	}
}

Foo::get();

echo "Done\n";
?>
--EXPECTF--	
Deprecated: Non-static method Foo::get() should not be called statically in %s on line %d

Fatal error: Uncaught Error: Non-static method Foo::__construct() cannot be called statically in %s:%d
Stack trace:
#0 %s(%d): Foo::get()
#1 {main}
  thrown in %s on line %d