ceu-lang / ceu

The Programming Language Céu

Home Page:http://www.ceu-lang.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

await for a code/await abstraction inside every does not produce errors

AnnyCaroline opened this issue · comments

This code compiles

code/await Teste(none) -> none do
    await FOREVER;
end

every 1s do
    await Teste(); //no errors
    // await 1s; //generates the expected error
end