mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
- Compiler crash using ?? with a void? macro #2973
This commit is contained in:
17
test/test_suite/errors/else_check_void.c3t
Normal file
17
test/test_suite/errors/else_check_void.c3t
Normal file
@@ -0,0 +1,17 @@
|
||||
module test;
|
||||
|
||||
faultdef MALFORMED_RESPONSE;
|
||||
macro void? set_field(String[] tokens)
|
||||
{
|
||||
if (tokens.len < 2) return MALFORMED_RESPONSE~;
|
||||
}
|
||||
|
||||
fn void main()
|
||||
{
|
||||
String[] tokens = { "a", "b" };
|
||||
set_field(tokens) ?? (void)1;
|
||||
}
|
||||
|
||||
/* #expect: test.ll
|
||||
|
||||
fefe
|
||||
Reference in New Issue
Block a user