Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / variadic_args5.php
blobca22aaab305af628515ad4732954421b8e80a2bb
1 <?hh
3 // Due to inheriting from an interface, this code fatals in HHVM.
5 interface I1 {
6 public function meth(...$args): void;
9 class C1 implements I1 {
10 public function meth(...$args): void {}
13 class C2 extends C1 {
14 public function meth($x = null, ...): void {}