mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
10 lines
296 B
Plaintext
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;
|
|
}
|