mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 22:33:08 +00:00
9 lines
158 B
Zig
9 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'
|