Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / untyped_awaitable.php
blobb7e8eea9845e10168e725668582bf8be49ac0d42
1 <?hh // partial
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 class C {
5 public function bar(): int {
6 return 3;
9 /* HH_FIXME[4101] */
10 async function foo(C $c): Awaitable {
11 return $c->bar();