rust/tests/ui/issues/issue-21554.rs

7 lines
77 B
Rust

struct Inches(i32);
fn main() {
Inches as f32;
//~^ ERROR casting
}