summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0395.rs
blob: c2de56c413f05d441ba5f4dc380b705097a1c888 (plain)
1
2
3
4
5
6
7
8
// gate-test-const_compare_raw_pointers

static FOO: i32 = 42;
static BAR: i32 = 42;

static BAZ: bool = { (&FOO as *const i32) == (&BAR as *const i32) }; //~ ERROR issue #53020
fn main() {
}