mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
10 lines
213 B
Zig
10 lines
213 B
Zig
const resource = @embedFile("bogus.txt",);
|
|
|
|
export fn entry() usize { return @sizeOf(@TypeOf(resource)); }
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :1:29: error: unable to open 'bogus.txt': FileNotFound
|