mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
12 lines
227 B
Zig
12 lines
227 B
Zig
pub fn main() void {
|
|
const a = true;
|
|
const b = false;
|
|
_ = a & &b;
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :4:11: error: incompatible types: 'bool' and '*const bool'
|
|
// :4:9: note: type 'bool' here
|
|
// :4:13: note: type '*const bool' here
|