rust/src/test/compile-fail/unsupported-cast.rs
2012-02-01 12:23:13 +01:00

9 lines
137 B
Rust

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