12 lines
270 B
Rust
12 lines
270 B
Rust
// error-pattern: the evaluated program panicked
|
|
|
|
#[derive(Debug)]
|
|
struct A;
|
|
|
|
fn main() {
|
|
// can't use assert_eq, b/c that will try to print the pointer addresses with full MIR enabled
|
|
if &A as *const A as *const () != &() as *const _ {
|
|
panic!()
|
|
}
|
|
}
|