A representative subset of errors that currently appear on declarations, but maybe...
[hiphop-php.git] / hphp / hack / test / typecheck / new_type_errors / error_relocation / ambiguous_inheritance.php
blob9e4f5f6a6a41d7580eba2d0e5bdc51c6fa946a5e
1 <?hh // strict
3 interface I1 {
4 public function foo(): mixed;
7 interface I2 {
8 public function foo(): int;
11 abstract class C implements I1, I2 {}