Support is and as
[hiphop-php.git] / hphp / hack / test / decl / return_disposable.php
blobc4a8a749a3a04c215fe73b0f0652c22ab105e5dc
1 <?hh // strict
3 final class Bar implements IDisposable {
4 public function __dispose(): void {}
7 <<__ReturnDisposable>>
8 async function gen(): Awaitable<Bar> {
9 return new Bar();