aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/embed_generated_file/main.zig
blob: 31f6e8c628ef3004cfb5ccc6e642f55392424015 (plain)
1
2
3
4
5
6
7
8
const std = @import("std");
const blah = @embedFile("bootloader.elf");

test {
    comptime {
        std.debug.assert(std.mem.eql(u8, blah[1..][0..3], "ELF"));
    }
}