No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / interface_mismatch.php
blob6bb0d4d0c262a4abe1903ab1deabae5a6286cb4a
1 <?hh // strict
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 interface IFoo {
13 public function whatever(): void;
16 class Foo implements IFoo {