New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / shape_idx_generic2.php
blob68758294e666dfc1b231b2c1834ed9ab7c4b8efb
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 class C<T as shape('x' => ?int, ...)> {
5 public function test(T $s): int {
6 return Shapes::idx($s, 'x', 0);