xref: /PHP-5.5/Zend/tests/errmsg_027.phpt (revision 0f0fe9c9)
1--TEST--
2errmsg: class declarations may not be nested
3--FILE--
4<?php
5
6class test {
7	function foo() {
8		class test2 {
9		}
10	}
11}
12
13echo "Done\n";
14?>
15--EXPECTF--
16Fatal error: Class declarations may not be nested in %s on line %d
17