summaryrefslogtreecommitdiff
path: root/Zend/tests/access_modifiers_004.phpt
blob: c023d2cb6d4da62fea2abf5be5d3a68287820134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
using multiple access modifiers (abstract methods)
--FILE--
<?php

class test {
	abstract abstract function foo() {
	}
}

echo "Done\n";
?>
--EXPECTF--	
Fatal error: Multiple abstract modifiers are not allowed in %s on line %d