blob: 6b98bb33395f2a7f5d7530cb89670e6385a7c02e (
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
|