blob: 2ecb6753f673902b01fdacbcc4436a1764b0ac41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
comptime {
const undef: i64 = undefined;
const not_undef: i64 = 32;
// If either of the operands are zero, the result is zero.
@compileLog(undef *% 0);
@compileLog(not_undef *% 0);
@compileLog(0 *% undef);
@compileLog(0 *% not_undef);
// If either of the operands are one, result is the other operand.
@compileLog(undef *% 1);
@compileLog(not_undef *% 1);
@compileLog(1 *% undef);
@compileLog(1 *% not_undef);
// If either of the operands are undefined, result is undefined.
@compileLog(undef *% 2);
@compileLog(2 *% undef);
}
// error
// backend=stage2
// target=native
//
// :6:5: error: found compile log statement
//
// Compile Log Output:
// @as(i64, 0)
// @as(i64, 0)
// @as(i64, 0)
// @as(i64, 0)
// @as(i64, undefined)
// @as(i64, 32)
// @as(i64, undefined)
// @as(i64, 32)
// @as(i64, undefined)
// @as(i64, undefined)
|