mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
10 lines
196 B
Zig
10 lines
196 B
Zig
|
pub fn main() void {
|
||
|
const z = true || false;
|
||
|
_ = z;
|
||
|
}
|
||
|
|
||
|
// error
|
||
|
//
|
||
|
// :2:15: error: expected error set type, found 'bool'
|
||
|
// :2:20: note: '||' merges error sets; 'or' performs boolean OR
|