summaryrefslogtreecommitdiff
path: root/Zend/tests/access_modifiers_004.phpt
blob: 2be203a9179281c34859aad534b6cc12056934da (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