summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cast/unsupported-cast.rs
blob: 1384ecc6ef251027e708e116e022c9c90f1af9f2 (plain)
1
2
3
4
5
struct A;

fn main() {
  println!("{:?}", 1.0 as *const A); //~ERROR  casting `f64` as `*const A` is invalid
}