mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 15:12:31 +00:00
12 lines
241 B
Zig
12 lines
241 B
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
|
|
const Tuple = struct { u8, u8 };
|
|
test "coercion from homogeneous tuple to array" {
|
|
const tuple: Tuple = .{ 5, 6 };
|
|
const array: [2]u8 = tuple;
|
|
_ = array;
|
|
}
|
|
|
|
// test
|