File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug27731.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:52 2012 UTC (13 years, 10 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Bug #27731 (error_reporing() call inside @ block does not work correctly)
--FILE--
<?php
	error_reporting(E_ALL ^ E_NOTICE);
	@error_reporting(E_WARNING);
	var_dump(error_reporting());
?>
--EXPECT--
int(2)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>