mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
15 lines
287 B
Plaintext
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;
|
|
}
|