rust/src/test/ui/unsupported-cast.rs
2018-12-25 21:08:33 -07:00

8 lines
120 B
Rust

// error-pattern:casting
struct A;
fn main() {
println!("{:?}", 1.0 as *const A); // Can't cast float to foreign.
}