blob: 5709125e5f01b3300197850bb621b46579c6dbdc (
plain)
1
2
3
4
5
6
7
8
9
|
use std::fmt;
fn main() {
let x: *const _ = 0 as _; //~ ERROR cannot cast
let x: *const _ = 0 as *const _; //~ ERROR cannot cast
let y: Option<*const fmt::Debug> = Some(x) as _;
let x = 0 as *const i32 as *const _ as *mut _; //~ ERROR cannot cast
}
|