mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Correctly show error on return or rethrow inside of a defer. Fix copying an access expression. Removing scoped expr.
6 lines
94 B
Plaintext
6 lines
94 B
Plaintext
fn void test1()
|
|
{
|
|
do test1(); while(1); // #error: A do loop must use { } around its body
|
|
}
|
|
|