Migrate rx/pure tests to strict mode, fix broken tests
[hiphop-php.git] / hphp / hack / test / typecheck / reactive / mutable_in_expr1.php
blobc27ebc82d7ae369b696c39b52335c5a5cffd42e2
1 <?hh
3 class A_f11 {
4 <<__Rx, __Mutable>>
5 public async function f(): Awaitable<void> {
9 <<__Rx, __MutableReturn>>
10 function get(): A_f11 {
11 return new A_f11();
15 <<__Rx>>
16 async function f_f11(): Awaitable<void> {
17 await get()->f();