blob: 416ba800976a63cdd7d9f30811fbdc0bec04a8a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
comptime {
var a: bool = undefined;
_ = &a;
_ = a and a;
}
// error
// backend=stage2
// target=native
//
// :4:9: error: use of undefined value here causes undefined behavior
|