blob: 3e4bafc2db1ea994be232987a8de38719e9be283 (
plain)
1
2
3
4
5
6
7
8
|
const std = @import("std");
const expect = std.testing.expect;
const S = struct { a: usize };
test "lazy abi size used in comparison" {
var rhs: i32 = 100;
try expect(@sizeOf(S) < rhs);
}
|