New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / parse_unsafe.php
blobf65c7634883f5696fe3128de4b47cef058cfc039
1 <?hh // partial
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the "hack" directory of this source tree.
13 class Test {
14 public function bloo() {
15 $b = 5;
16 $map = array();
18 // UNSAFE
19 $map['a'] = $b;