Last active
December 15, 2020 13:29
-
-
Save lithdew/54301efd0af1b54d08334fce8ac15eb2 to your computer and use it in GitHub Desktop.
Assertion failed at stage1/codegen.cpp:4670 in ir_render_union_field_ptr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub const Empty = struct { | |
pub inline fn decode(buf: []const u8) !Empty { | |
return Empty{}; | |
} | |
}; | |
pub const Type = packed enum(u8) { | |
no_op | |
}; | |
pub const Data = union(Type) { | |
no_op: Empty, | |
pub fn decode(buf: []const u8) !Data { | |
return @unionInit( | |
Data, | |
"no_op", | |
Empty.decode(buf) catch unreachable, | |
); | |
} | |
}; | |
const std = @import("std"); | |
pub fn main() !void { | |
var data: Data = .{ .no_op = .{} }; | |
var buf: [1]u8 = undefined; | |
const recovered = try Data.decode(buf[0..]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment