blob: 513b15ed088d87e47e63a2a33b9110de439f8324 (
plain)
1
2
3
4
5
6
7
8
9
|
// compile-pass
// tests that the following code compiles, but produces a future-compatibility warning
fn main() {
let data = std::ptr::null();
let _ = &data as *const *const ();
if data.is_null() {}
}
|