Bug causing a compiler error when parsing a broken lambda inside of an expression.

This commit is contained in:
Christoffer Lerno
2025-08-04 12:25:09 +02:00
parent 604661b12c
commit f2d27229d2
4 changed files with 9 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
macro int main2()
{
(fn void (*arg) { // #error: Expected a parameter
})(&&true);
}