No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / construct_default_values2.php
blobf455d106d1b98b49d6f4b02ca1c6fc74231aa678
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 class B {
5 public function foo(): int {
6 return 2;
9 class C {
10 public function __construct(
11 private B $b = new B(),
12 int $x = $this->b->foo(),
13 ) {}