Files
zig/test/cases/compile_errors/@embedFile_with_empty_path.zig
r00ster91 72ac37952e fix @embedFile("") not giving a proper error
Currently, in a debug build of the compiler, `@embedFile("")` is a crash;
in a release build the compiler, `@embedFile("")` is "error: unable to open '': OutOfMemory".
2023-07-21 23:39:42 +02:00

12 lines
197 B
Zig

const resource = @embedFile("");
export fn entry() usize {
return @sizeOf(@TypeOf(resource));
}
// error
// backend=stage2
// target=native
//
// :1:29: error: file path name cannot be empty