mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
8 lines
158 B
Zig
8 lines
158 B
Zig
export fn a() usize {
|
|
return @embedFile("/root/foo").len;
|
|
}
|
|
|
|
// error
|
|
// target=native
|
|
//
|
|
//:2:23: error: embed of file outside package path: '/root/foo'
|