rust/src/test/compile-fail/unsupported-cast.rs
2011-10-27 13:37:35 -07:00

9 lines
135 B
Rust

// error-pattern:unsupported cast
use std;
import std::os;
fn main() {
log 1.0 as os::libc::FILE; // Can't cast float to native.
}