Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / for_typechange.php
blobd0507f96a0de2e447d60b56e911b8829f2b1820c
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.
12 function meh(?int $i): void {
13 for( ; $i !== null; $i = null) {
14 $i = $i + 5;