Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / array_append_vec_property_good.php
blob19f79c5699f07afb5c2069090be931966d5925cb
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 class C {
5 public vec<string> $vs = vec[];
8 function test(C $c): void {
9 $c->vs[] = 'foo';