VM doesn't support async getters using => notation. #22632
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Milestone
Example code:
Future get topArrowGetter async => await 42;
main() { topArrowGetter.then(print); }
'file:///...': error: line 1 pos 42: semicolon expected
Future get topArrowGetter async => await 42;
^
The text was updated successfully, but these errors were encountered: