Files
c3c/test/test_suite/errors/else_unreachable_in_block.c3
2025-03-03 00:32:20 +01:00

15 lines
287 B
Plaintext

// #deprecation: no
module test;
import std;
macro unreachable_abort()
{
abort("Unable to open config.json file");
}
fn void main()
{
char[] bytes = file::load_temp("config.json") ??
unreachable_abort();// #error: Cannot find a common type for 'char[]' and 'void'
char[] bytes2;
}