summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_037.phpt
blob: f15fea89f3b7cdb8850703f85fa396e64529601d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
errmsg: properties cannot be abstract
--FILE--
<?php

class test {
    abstract $var = 1;
}

echo "Done\n";
?>
--EXPECTF--
Fatal error: Properties cannot be declared abstract in %s on line %d