Issue ID:
Type
Bug
Title:
FIX: Nested/Inline modules can't be called from async blocks
Created:
1/20/2020 10:49:27 PM by Alana Tripp
Status:
Closed on 3/30/2020 10:16:15 AM
Last pulled:
3/27/2020 10:50:24 AM
Description:
##AH:UseTextMode
module Hello-Dears
{
    Log-Information 1000;
}

# This will work
{
    call Hello-Dears();
}

# This will not work
with async
{
    call Hello-Dears();
}