summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/typed_properties_017.phpt
blob: 306b40f72c4bae9d3c97b07c7e5e4bd5a992cc1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Test typed properties disallow void
--FILE--
<?php
class Foo {
    public void $int;
}

$foo = new Foo();
?>
--EXPECTF--
Fatal error: Property Foo::$int cannot have type void in %s on line 3