Files
c3c/test/test_suite/errors/else_unreachable_in_block.c3
2025-02-18 12:50:34 +01:00

10 lines
296 B
Plaintext

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