blob: b67ce0b5d0c056fb38932977c9a6a1012d508fbe (
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
|