mirror of
https://github.com/ziglang/zig.git
synced 2026-01-09 08:55:36 +00:00
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
58 lines
1.4 KiB
Zig
58 lines
1.4 KiB
Zig
const std = @import("std");
|
|
|
|
// baseline (control) struct with array of scalar
|
|
const Box0 = struct {
|
|
items: [4]Item,
|
|
|
|
const Item = struct {
|
|
num: u32,
|
|
};
|
|
};
|
|
|
|
// struct with array of empty struct
|
|
const Box1 = struct {
|
|
items: [4]Item,
|
|
|
|
const Item = struct {};
|
|
};
|
|
|
|
// struct with array of zero-size struct
|
|
const Box2 = struct {
|
|
items: [4]Item,
|
|
|
|
const Item = struct {
|
|
nothing: void,
|
|
};
|
|
};
|
|
|
|
fn doTest() void {
|
|
// var
|
|
{
|
|
var box0: Box0 = .{ .items = undefined };
|
|
std.testing.expect(@typeInfo(@TypeOf(box0.items[0..])).Pointer.is_const == false);
|
|
|
|
var box1: Box1 = .{ .items = undefined };
|
|
std.testing.expect(@typeInfo(@TypeOf(box1.items[0..])).Pointer.is_const == false);
|
|
|
|
var box2: Box2 = .{ .items = undefined };
|
|
std.testing.expect(@typeInfo(@TypeOf(box2.items[0..])).Pointer.is_const == false);
|
|
}
|
|
|
|
// const
|
|
{
|
|
const box0: Box0 = .{ .items = undefined };
|
|
std.testing.expect(@typeInfo(@TypeOf(box0.items[0..])).Pointer.is_const == true);
|
|
|
|
const box1: Box1 = .{ .items = undefined };
|
|
std.testing.expect(@typeInfo(@TypeOf(box1.items[0..])).Pointer.is_const == true);
|
|
|
|
const box2: Box2 = .{ .items = undefined };
|
|
std.testing.expect(@typeInfo(@TypeOf(box2.items[0..])).Pointer.is_const == true);
|
|
}
|
|
}
|
|
|
|
test "pointer-to-array constness for zero-size elements" {
|
|
doTest();
|
|
comptime doTest();
|
|
}
|