Porting decl tests from partial to strict
[hiphop-php.git] / hphp / hack / test / decl / classes_consistent_construct.php
blob2ff5b52079d63c020ef4e890165c3ff715772730
1 <?hh
3 <<__ConsistentConstruct>>
4 class C1 {}
6 class C2 extends C1 {
7 // new mandatory arg is not ok
8 public function __construct(A $a) {}
11 class A {}