1--TEST--
2Test typed properties type must precede first declaration in group
3--FILE--
4<?php
5class Foo {
6    public $bar,
7           int $qux;
8}
9?>
10--EXPECTF--
11Parse error: syntax error, unexpected identifier "int", expecting variable in %s on line %d
12